@bizdoc/core 1.13.4 → 1.13.5

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.
@@ -11985,7 +11985,7 @@ class ExploreItemsComponent {
11985
11985
  map(a => ({ name: a.name, label: a.title }));
11986
11986
  const index = this._cube.indices.find(i => i.name === this.index);
11987
11987
  this.columns.push({ name: 'value', label: index.title, type: FieldType.Currency });
11988
- this.displayedColumns = columns.map(c => c.name);
11988
+ this.displayedColumns = this.columns.map(c => c.name);
11989
11989
  this._template = null;
11990
11990
  this.selectable = false;
11991
11991
  }