Move signups status column
[MAILPOET-3087]
This commit is contained in:
@@ -25,10 +25,6 @@ const columns = [
|
|||||||
name: 'type',
|
name: 'type',
|
||||||
label: MailPoet.I18n.t('type'),
|
label: MailPoet.I18n.t('type'),
|
||||||
},
|
},
|
||||||
{
|
|
||||||
name: 'signups',
|
|
||||||
label: MailPoet.I18n.t('signups'),
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: 'updated_at',
|
name: 'updated_at',
|
||||||
label: MailPoet.I18n.t('updatedAt'),
|
label: MailPoet.I18n.t('updatedAt'),
|
||||||
@@ -200,6 +196,11 @@ class FormList extends React.Component {
|
|||||||
<option value="disabled">{MailPoet.I18n.t('inactive')}</option>
|
<option value="disabled">{MailPoet.I18n.t('inactive')}</option>
|
||||||
</select>
|
</select>
|
||||||
</p>
|
</p>
|
||||||
|
<p>
|
||||||
|
{MailPoet.I18n.t('signups')}
|
||||||
|
{': '}
|
||||||
|
{form.signups.toLocaleString()}
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -244,9 +245,6 @@ class FormList extends React.Component {
|
|||||||
<td className="column" data-colname={MailPoet.I18n.t('type')}>
|
<td className="column" data-colname={MailPoet.I18n.t('type')}>
|
||||||
{ placement }
|
{ placement }
|
||||||
</td>
|
</td>
|
||||||
<td className="column" data-colname={MailPoet.I18n.t('signups')}>
|
|
||||||
{ form.signups }
|
|
||||||
</td>
|
|
||||||
<td className="column-date" data-colname={MailPoet.I18n.t('updatedAt')}>
|
<td className="column-date" data-colname={MailPoet.I18n.t('updatedAt')}>
|
||||||
<abbr>{ MailPoet.Date.format(form.updated_at) }</abbr>
|
<abbr>{ MailPoet.Date.format(form.updated_at) }</abbr>
|
||||||
</td>
|
</td>
|
||||||
|
Reference in New Issue
Block a user