slick-components 17.0.67 → 17.0.68
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.
|
@@ -23,7 +23,7 @@ class SlickInitParams {
|
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
class SlickInitService {
|
|
26
|
-
static { this.version = "17.0.
|
|
26
|
+
static { this.version = "17.0.68"; }
|
|
27
27
|
constructor() { }
|
|
28
28
|
static init(initParams) {
|
|
29
29
|
console.info(`Slick Components Version ${SlickInitService.version}`);
|
|
@@ -6379,7 +6379,7 @@ class SlickGridComponent {
|
|
|
6379
6379
|
if (this.gridOptions.gridKey) {
|
|
6380
6380
|
const suffix = this.selectedFavorite === 'Default' ? '' : ('_' + this.selectedFavorite);
|
|
6381
6381
|
let gridColumnsJson = localStorage.getItem(`GRID_${this.gridOptions.gridKey}_COLUMNS${suffix}`);
|
|
6382
|
-
if (gridColumnsJson &&
|
|
6382
|
+
if (gridColumnsJson && gridColumnsJson !== "null") {
|
|
6383
6383
|
let columns = JSON.parse(gridColumnsJson);
|
|
6384
6384
|
let displayOrder = 0;
|
|
6385
6385
|
columns.forEach(c => {
|