diff --git a/frontend/my/src/Campaigns.js b/frontend/my/src/Campaigns.js index daded3c..4ed47ff 100644 --- a/frontend/my/src/Campaigns.js +++ b/frontend/my/src/Campaigns.js @@ -45,7 +45,7 @@ class Campaigns extends React.PureComponent { title: "Name", dataIndex: "name", sorter: true, - width: "30%", + width: "20%", vAlign: "top", render: (text, record) => { const out = []; @@ -85,7 +85,7 @@ class Campaigns extends React.PureComponent { { title: "Lists", dataIndex: "lists", - width: "20%", + width: "25%", align: "left", className: "lists", render: (lists, record) => { @@ -93,15 +93,16 @@ class Campaigns extends React.PureComponent { lists.forEach((l) => { out.push( { l.name } - ) - }) - - return out - } - }, + ) + }) + + return out + } + }, { title: "Stats", className: "stats", + width: "30%", render: (text, record) => { if(record.status !== cs.CampaignStatusDraft && record.status !== cs.CampaignStatusScheduled) { return this.renderStats(record)