Skip to content

Commit

Permalink
Merge pull request #13610 from snipe/fixes/disallow_sorting_on_age
Browse files Browse the repository at this point in the history
Fixes #13609 - disallow sorting on age
  • Loading branch information
snipe authored Sep 15, 2023
2 parents 131ccaa + 0b562d2 commit eb40654
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/Presenters/AssetPresenter.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,8 @@ public static function dataTableLayout()
'formatter' => 'dateDisplayFormatter',
], [
'field' => 'age',
'searchable' => true,
'sortable' => true,
'searchable' => false,
'sortable' => false,
'visible' => false,
'title' => trans('general.age'),
], [
Expand Down

0 comments on commit eb40654

Please sign in to comment.