@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.
@@ -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.sortable);
2546
+ return new TableColumns(this.toString(), options.sortable, options.nullLast);
2547
2547
  };
2548
2548
 
2549
2549
  /*