From 30297e479e8f9b66cfb337822915bc5a9ff1bfbd Mon Sep 17 00:00:00 2001 From: snipe <snipe@snipe.net> Date: Mon, 28 Jun 2021 13:08:32 -0700 Subject: [PATCH] Hide notes field by default Signed-off-by: snipe <snipe@snipe.net> --- resources/views/statuslabels/index.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/statuslabels/index.blade.php b/resources/views/statuslabels/index.blade.php index f69f69cd0..1590ac3b5 100755 --- a/resources/views/statuslabels/index.blade.php +++ b/resources/views/statuslabels/index.blade.php @@ -53,7 +53,7 @@ <th data-sortable="true" data-field="color" data-formatter="colorSqFormatter">{{ trans('admin/statuslabels/table.color') }}</th> <th class="text-center" data-sortable="true" data-field="show_in_nav" data-formatter="trueFalseFormatter">{{ trans('admin/statuslabels/table.show_in_nav') }}</th> <th class="text-center" data-sortable="true" data-field="default_label" data-formatter="trueFalseFormatter">{{ trans('admin/statuslabels/table.default_label') }}</th> - <th data-sortable="true" data-field="notes">{{ trans('general.notes') }}</th> + <th data-sortable="true" data-field="notes" data-visible="false">{{ trans('general.notes') }}</th> <th data-formatter="statuslabelsActionsFormatter" data-searchable="false" data-sortable="false" data-field="actions">{{ trans('table.actions') }}</th> </tr> </thead> -- GitLab