Merge pull request #16303 from snipe/chore/sc-28493

Added tooltip for currency in table
This commit is contained in:
snipe 2025-02-23 12:21:04 +00:00 committed by GitHub
commit 201f487853
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View file

@ -102,13 +102,13 @@ class LocationPresenter extends Presenter
'titleTooltip' => trans('general.people'), 'titleTooltip' => trans('general.people'),
'visible' => true, 'visible' => true,
'class' => 'css-house-user', 'class' => 'css-house-user',
// 'data-tooltip' => true, - not working, but I want to try to use regular tooltips here
], [ ], [
'field' => 'currency', 'field' => 'currency',
'searchable' => true, 'searchable' => true,
'sortable' => true, 'sortable' => true,
'switchable' => true, 'switchable' => true,
'title' => trans('general.currency'), 'title' => trans('general.currency_text'),
'titleTooltip' => trans('general.currency_text'),
'visible' => true, 'visible' => true,
'class' => 'css-currency', 'class' => 'css-currency',
], [ ], [

View file

@ -88,6 +88,7 @@ return [
'record_created' => 'Record Created', 'record_created' => 'Record Created',
'updated_at' => 'Updated at', 'updated_at' => 'Updated at',
'currency' => '$', // this is deprecated 'currency' => '$', // this is deprecated
'currency_text' => 'Currency', //
'current' => 'Current', 'current' => 'Current',
'current_password' => 'Current Password', 'current_password' => 'Current Password',
'customize_report' => 'Customize Report', 'customize_report' => 'Customize Report',