@the-liberators/ngx-scrumteamsurvey-tools 2.3.79 → 2.3.81
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.
|
@@ -182,6 +182,7 @@ let ViewModelStateBase = class ViewModelStateBase {
|
|
|
182
182
|
}
|
|
183
183
|
}, error => {
|
|
184
184
|
this.result = null;
|
|
185
|
+
throw (error);
|
|
185
186
|
});
|
|
186
187
|
}
|
|
187
188
|
forcedReload() {
|
|
@@ -6209,7 +6210,6 @@ class ModelFactorBreakdownComponent {
|
|
|
6209
6210
|
updatePaging() {
|
|
6210
6211
|
const totalPoints = this.factor?.points?.length || 0;
|
|
6211
6212
|
this.pageCount = totalPoints > this.pageSize ? Math.ceil(totalPoints / this.pageSize) : 1;
|
|
6212
|
-
console.log(this.factor.name, totalPoints, this.pageCount);
|
|
6213
6213
|
this.showPage(this.currentPage);
|
|
6214
6214
|
}
|
|
6215
6215
|
showPage(page) {
|