Skip to content

Commit

Permalink
I've fixed the lowercase problem in data manager object overview (PRE…
Browse files Browse the repository at this point in the history
…SIDECMS-1040).
  • Loading branch information
cfmitrah committed Mar 26, 2018
1 parent 5458822 commit 434f1b2
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -28,7 +28,7 @@
, isMultilingual = tableSettings.isMultilingual || cfrequest.isMultilingual || false
, draftsEnabled = tableSettings.draftsEnabled || cfrequest.draftsEnabled || false
, object = tableSettings.objectName || cfrequest.objectName || ""
, objectTitle = tableSettings.objectTitle || cfrequest.objectTitle || i18n.translateResource( "preside-objects." + object + ":title" ).toLowerCase()
, objectTitle = tableSettings.objectTitle || cfrequest.objectTitle || i18n.translateResource( "preside-objects." + object + ":title" )
, allowSearch = tableSettings.allowSearch || cfrequest.allowSearch
, allowFilter = tableSettings.allowFilter || cfrequest.allowFilter
, allowDataExport = tableSettings.allowDataExport || cfrequest.allowDataExport
Expand Down

0 comments on commit 434f1b2

Please sign in to comment.