@ssplib/react-components 0.0.146 → 0.0.147
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.
|
@@ -313,7 +313,7 @@ function Table({ columns, fetchFunc, emptyMsg = {
|
|
|
313
313
|
if (k === 'rlEventoData')
|
|
314
314
|
return `${x[k][0]['DT_INICIO']} - ${x[k][0]['HR_INICIO']}`;
|
|
315
315
|
if (typeof x[k] === 'string') {
|
|
316
|
-
let item = csvUpper ? x[k].toUpperCase() : x[k];
|
|
316
|
+
let item = csvUpper && !csvExcludeUpper.includes(k) ? x[k].toUpperCase() : x[k];
|
|
317
317
|
item = normalize ? item.normalize('NFD').replace(/[\u0300-\u036f]/g, '') : item;
|
|
318
318
|
return removeQuotes ? `${item}` : `"${item}"`;
|
|
319
319
|
}
|