Fix campaign stats cell width

This commit is contained in:
Kailash Nadh 2018-11-05 19:19:16 +05:30
parent 44442b2b62
commit 0f56a5c1a5
1 changed files with 9 additions and 8 deletions

View File

@ -45,7 +45,7 @@ class Campaigns extends React.PureComponent {
title: "Name", title: "Name",
dataIndex: "name", dataIndex: "name",
sorter: true, sorter: true,
width: "30%", width: "20%",
vAlign: "top", vAlign: "top",
render: (text, record) => { render: (text, record) => {
const out = []; const out = [];
@ -85,7 +85,7 @@ class Campaigns extends React.PureComponent {
{ {
title: "Lists", title: "Lists",
dataIndex: "lists", dataIndex: "lists",
width: "20%", width: "25%",
align: "left", align: "left",
className: "lists", className: "lists",
render: (lists, record) => { render: (lists, record) => {
@ -102,6 +102,7 @@ class Campaigns extends React.PureComponent {
{ {
title: "Stats", title: "Stats",
className: "stats", className: "stats",
width: "30%",
render: (text, record) => { render: (text, record) => {
if(record.status !== cs.CampaignStatusDraft && record.status !== cs.CampaignStatusScheduled) { if(record.status !== cs.CampaignStatusDraft && record.status !== cs.CampaignStatusScheduled) {
return this.renderStats(record) return this.renderStats(record)