openchs-models 1.32.3 → 1.32.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.
- package/dist/ReportCard.js +1 -1
- package/package.json +1 -1
package/dist/ReportCard.js
CHANGED
|
@@ -219,7 +219,7 @@ class ReportCard extends _BaseEntity.default {
|
|
|
219
219
|
|
|
220
220
|
createNestedErrorResults(primaryValue, secondaryValue) {
|
|
221
221
|
const reportCard = this;
|
|
222
|
-
return Array(this.
|
|
222
|
+
return Array.from(Array(this.countOfCards).keys()).map(index => {
|
|
223
223
|
const itemKey = reportCard.getCardId(index);
|
|
224
224
|
return _NestedReportCardResult.default.create(primaryValue, secondaryValue, false, true, itemKey);
|
|
225
225
|
});
|