From d9124a368a3da273f1281277cfd03ea32867652e Mon Sep 17 00:00:00 2001
From: Pavel Dohnal
Date: Tue, 18 Aug 2020 09:43:24 +0200
Subject: [PATCH] Move signups status column
[MAILPOET-3087]
---
assets/js/src/forms/list.jsx | 12 +++++-------
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/assets/js/src/forms/list.jsx b/assets/js/src/forms/list.jsx
index 1a9a7356fc..7d2e54c761 100644
--- a/assets/js/src/forms/list.jsx
+++ b/assets/js/src/forms/list.jsx
@@ -25,10 +25,6 @@ const columns = [
name: 'type',
label: MailPoet.I18n.t('type'),
},
- {
- name: 'signups',
- label: MailPoet.I18n.t('signups'),
- },
{
name: 'updated_at',
label: MailPoet.I18n.t('updatedAt'),
@@ -200,6 +196,11 @@ class FormList extends React.Component {
+
+ {MailPoet.I18n.t('signups')}
+ {': '}
+ {form.signups.toLocaleString()}
+
);
}
@@ -244,9 +245,6 @@ class FormList extends React.Component {
{ placement }
|
-
- { form.signups }
- |
{ MailPoet.Date.format(form.updated_at) }
|