mirror of
https://github.com/knadh/listmonk.git
synced 2024-11-10 17:13:04 +08:00
Make duration stats visibility conditional
This commit is contained in:
parent
ec7d398c21
commit
f334022cd6
1 changed files with 6 additions and 7 deletions
|
@ -208,7 +208,6 @@ class Campaigns extends React.PureComponent {
|
|||
<Progress strokeColor={ color } status="active"
|
||||
type="line" percent={ this.progressPercent(record) } />
|
||||
}
|
||||
|
||||
<Row><Col className="label" span={10}>Sent</Col><Col span={12}>
|
||||
{ sent >= toSend &&
|
||||
<span>{ toSend }</span>
|
||||
|
@ -229,21 +228,21 @@ class Campaigns extends React.PureComponent {
|
|||
<Row><Col className="label" span={10}>Views</Col><Col span={12}>0</Col></Row>
|
||||
<Row><Col className="label" span={10}>Clicks</Col><Col span={12}>0</Col></Row>
|
||||
<br />
|
||||
|
||||
<Row><Col className="label" span={10}>Created</Col><Col span={12}>{ dayjs(record.created_at).format(cs.DateFormat) }</Col></Row>
|
||||
|
||||
{ startedAt &&
|
||||
<Row><Col className="label" span={10}>Started</Col><Col span={12}>{ dayjs(startedAt).format(cs.DateFormat) }</Col></Row>
|
||||
}
|
||||
|
||||
{ isDone &&
|
||||
<Row><Col className="label" span={10}>Ended</Col><Col span={12}>
|
||||
{ dayjs(updatedAt).format(cs.DateFormat) }
|
||||
</Col></Row>
|
||||
}
|
||||
<Row><Col className="label" span={10}>Duration</Col><Col className="duration" span={12}>
|
||||
{ startedAt ? dayjs(updatedAt).from(dayjs(startedAt), true) : "" }
|
||||
</Col></Row>
|
||||
{ startedAt && updatedAt &&
|
||||
<Row><Col className="label" span={10}>Duration</Col><Col className="duration" span={12}>
|
||||
{ dayjs(updatedAt).from(dayjs(startedAt), true) }
|
||||
</Col></Row>
|
||||
}
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue