@schneideress/dashboardframework 0.0.126 → 0.0.127
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/schneideress-dashboardframework.umd.js +5 -5
- package/bundles/schneideress-dashboardframework.umd.js.map +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js +1 -1
- package/bundles/schneideress-dashboardframework.umd.min.js.map +1 -1
- package/esm2015/lib/ra-widget-container/ra.widget.container.component.js +6 -6
- package/esm5/lib/ra-widget-container/ra.widget.container.component.js +6 -6
- package/fesm2015/schneideress-dashboardframework.js +5 -5
- package/fesm2015/schneideress-dashboardframework.js.map +1 -1
- package/fesm5/schneideress-dashboardframework.js +5 -5
- package/fesm5/schneideress-dashboardframework.js.map +1 -1
- package/package.json +1 -1
|
@@ -1839,15 +1839,15 @@
|
|
|
1839
1839
|
if (typeof (titleLineEnabled) != 'undefined') {
|
|
1840
1840
|
this.enableTitleLine = titleLineEnabled;
|
|
1841
1841
|
}
|
|
1842
|
-
this.editText = this.translateService.translate('Common.edit').length >
|
|
1842
|
+
this.editText = this.translateService.translate('Common.edit').length > 6 ? (this.translateService.translate('Common.edit').substring(0, 6) + '...') : this.translateService.translate('Common.edit');
|
|
1843
1843
|
this.editToolTipValue = this.translateService.translate('Common.edit');
|
|
1844
|
-
this.copyText = this.translateService.translate('Common.copy').length >
|
|
1844
|
+
this.copyText = this.translateService.translate('Common.copy').length > 6 ? (this.translateService.translate('Common.copy').substring(0, 6) + '...') : this.translateService.translate('Common.copy');
|
|
1845
1845
|
this.copyToolTipValue = this.translateService.translate('Common.copy');
|
|
1846
|
-
this.moveText = this.translateService.translate('Common.move').length >
|
|
1846
|
+
this.moveText = this.translateService.translate('Common.move').length > 6 ? (this.translateService.translate('Common.move').substring(0, 6) + '...') : this.translateService.translate('Common.move');
|
|
1847
1847
|
this.moveToolTipValue = this.translateService.translate('Common.move');
|
|
1848
|
-
this.excelText = this.translateService.translate('Common.excel').length >
|
|
1848
|
+
this.excelText = this.translateService.translate('Common.excel').length > 6 ? (this.translateService.translate('Common.excel').substring(0, 6) + '...') : this.translateService.translate('Common.excel');
|
|
1849
1849
|
this.excelToolTipValue = this.translateService.translate('Common.excel');
|
|
1850
|
-
this.deleteText = this.translateService.translate('Common.delete').length >
|
|
1850
|
+
this.deleteText = this.translateService.translate('Common.delete').length > 6 ? (this.translateService.translate('Common.delete').substring(0, 6) + '...') : this.translateService.translate('Common.delete');
|
|
1851
1851
|
this.deleteToolTipValue = this.translateService.translate('Common.delete');
|
|
1852
1852
|
widgetContainer.isWidgetLoaded = true;
|
|
1853
1853
|
widgetConfigFilter.appConfig = this.appConfig;
|