@bizdoc/core 1.11.3 → 1.11.4

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.
@@ -10167,7 +10167,7 @@ class CubeSpreadsheetComponent {
10167
10167
  this.loadingChange.emit(false);
10168
10168
  });
10169
10169
  }, (e) => {
10170
- this._sb.error(e.status === 401 ? 'Unauthorized' : null);
10170
+ this._sb.error(e.status === 406 ? 'Unauthorized' : null);
10171
10171
  this.loadingChange.emit(false);
10172
10172
  });
10173
10173
  }
@@ -25680,7 +25680,7 @@ class CubeParallelComponent {
25680
25680
  this.width = Math.max(Math.round(this.size / this.items.length), 150) + 'px';
25681
25681
  this._loading.next(false);
25682
25682
  }, (e) => {
25683
- this._sb.error(e.status === 401 ? 'Unauthorized' : null);
25683
+ this._sb.error(e.status === 406 ? 'Unauthorized' : null);
25684
25684
  this._loading.next(false);
25685
25685
  });
25686
25686
  }