tin-spa 2.3.11 → 2.3.12

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.
@@ -3993,6 +3993,12 @@ class TableHeaderComponent {
3993
3993
  this.tileClick.emit(tileName);
3994
3994
  }
3995
3995
  getHeaderButtons() {
3996
+ if (this.config?.buttons == undefined) {
3997
+ return [];
3998
+ }
3999
+ if (!this.config?.buttons) {
4000
+ return [];
4001
+ }
3996
4002
  return this.config.buttons.filter(b => b.name == 'create' || b.inHeader);
3997
4003
  }
3998
4004
  testVisible(button) {