@indigina/ui-kit 1.1.262 → 1.1.263
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.
|
@@ -8287,7 +8287,10 @@ class KitGridExportComponent {
|
|
|
8287
8287
|
const rootElement = 'Rows';
|
|
8288
8288
|
const content = rows.map(row => {
|
|
8289
8289
|
const cells = columns.map(column => {
|
|
8290
|
-
const title = this.translateService.instant(column.title)
|
|
8290
|
+
const title = this.translateService.instant(column.title)
|
|
8291
|
+
.replaceAll(' ', '')
|
|
8292
|
+
.replaceAll('/', '-')
|
|
8293
|
+
.replaceAll('\'', '');
|
|
8291
8294
|
const value = this.gridCellService.createCellValue(column.type, column.field, row, this.translationMap());
|
|
8292
8295
|
if (value) {
|
|
8293
8296
|
return this.wrapWithElement(value, title, 2, false, true);
|