diff --git a/assets/js/src/forms/list.jsx b/assets/js/src/forms/list.jsx index fe607c3bea..4b34f65ab7 100644 --- a/assets/js/src/forms/list.jsx +++ b/assets/js/src/forms/list.jsx @@ -102,14 +102,6 @@ const item_actions = [ } ]; -const bulk_actions = [ - { - name: 'trash', - label: MailPoet.I18n.t('trash'), - onSuccess: messages.onTrash - } -]; - const FormList = React.createClass({ createForm() { MailPoet.Ajax.post({ @@ -138,7 +130,10 @@ const FormList = React.createClass({
- { form.name } + { form.name } { actions } @@ -171,7 +166,6 @@ const FormList = React.createClass({ endpoint="forms" onRenderItem={ this.renderItem } columns={ columns } - bulk_actions={ bulk_actions } item_actions={ item_actions } />