mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Merge pull request #16303 from snipe/chore/sc-28493
Added tooltip for currency in table
This commit is contained in:
commit
201f487853
|
@ -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',
|
||||||
], [
|
], [
|
||||||
|
|
|
@ -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',
|
||||||
|
|
Loading…
Reference in a new issue