@deephaven/iris-grid 0.63.1-express-memory-fix.2 → 0.64.1-beta.0
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.
|
@@ -529,10 +529,10 @@ class IrisGridTableModelTemplate extends IrisGridModel {
|
|
|
529
529
|
}
|
|
530
530
|
if (TableUtils.isTextType((_this$columns$x = this.columns[x]) === null || _this$columns$x === void 0 ? void 0 : _this$columns$x.type)) {
|
|
531
531
|
if (text === null) {
|
|
532
|
-
return 'null';
|
|
532
|
+
return this.formatter.showNullStrings ? 'null' : '';
|
|
533
533
|
}
|
|
534
534
|
if (text === '') {
|
|
535
|
-
return 'empty';
|
|
535
|
+
return this.formatter.showEmptyStrings ? 'empty' : '';
|
|
536
536
|
}
|
|
537
537
|
}
|
|
538
538
|
return text !== null && text !== void 0 ? text : '';
|