Skip to content

Commit

Permalink
Rising priority of mail type column in list of email templates
Browse files Browse the repository at this point in the history
Filterable and searchable columns should always have higher priority as
we want to prevent cases when the filter is enabled and column with
filter selectbox gets hidden

remp/novydenik#339
  • Loading branch information
rootpd committed Feb 15, 2019
1 parent 84a0d91 commit 3f55ad1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mailer/app/presenters/TemplatePresenter.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function createComponentDataTableDefault(IDataTableFactory $dataTableFact
->setColSetting('type', [
'orderable' => false,
'filter' => $mailTypePairs,
'priority' => 2,
'priority' => 1,
])
->setColSetting('opened', [
'priority' => 3,
Expand Down

0 comments on commit 3f55ad1

Please sign in to comment.