@recursyve/nice-data-filter-kit 13.1.0 → 13.1.1
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/esm2020/lib/utils/string.utils.mjs +2 -2
- package/fesm2015/recursyve-nice-data-filter-kit.mjs +1 -1
- package/fesm2015/recursyve-nice-data-filter-kit.mjs.map +1 -1
- package/fesm2020/recursyve-nice-data-filter-kit.mjs +1 -1
- package/fesm2020/recursyve-nice-data-filter-kit.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2543,7 +2543,7 @@ class StringUtils {
|
|
|
2543
2543
|
// tslint:disable-next-line:max-line-length
|
|
2544
2544
|
String.prototype.toTableColumn = function (sortableOrOptions, nullLast) {
|
|
2545
2545
|
const options = typeof sortableOrOptions === "object" ? sortableOrOptions : { sortable: sortableOrOptions, nullLast };
|
|
2546
|
-
return new TableColumns(this.toString(), options.sortable, options.
|
|
2546
|
+
return new TableColumns(this.toString(), options.sortable, options.nullLast);
|
|
2547
2547
|
};
|
|
2548
2548
|
|
|
2549
2549
|
/*
|