@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.
- package/esm2020/lib/cube/grid/spreadsheet.component.mjs +2 -2
- package/esm2020/lib/cube/parallel/parallel.component.mjs +2 -2
- package/fesm2015/bizdoc-core.mjs +2 -2
- package/fesm2015/bizdoc-core.mjs.map +1 -1
- package/fesm2020/bizdoc-core.mjs +2 -2
- package/fesm2020/bizdoc-core.mjs.map +1 -1
- package/package.json +1 -1
package/fesm2020/bizdoc-core.mjs
CHANGED
@@ -10167,7 +10167,7 @@ class CubeSpreadsheetComponent {
|
|
10167
10167
|
this.loadingChange.emit(false);
|
10168
10168
|
});
|
10169
10169
|
}, (e) => {
|
10170
|
-
this._sb.error(e.status ===
|
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 ===
|
25683
|
+
this._sb.error(e.status === 406 ? 'Unauthorized' : null);
|
25684
25684
|
this._loading.next(false);
|
25685
25685
|
});
|
25686
25686
|
}
|