diff --git a/src/components/Toolbox/DesignRequirements.vue b/src/components/Toolbox/DesignRequirements.vue index 23340a80..a6c59750 100644 --- a/src/components/Toolbox/DesignRequirements.vue +++ b/src/components/Toolbox/DesignRequirements.vue @@ -116,7 +116,7 @@ export default { newElementsCoil.push(this.masStore.mas.magnetic.coil.functionalDescription[i]); } else { - newElementsCoil.push({'name': toTitleCase(isolationSideOrdered[i])}); + newElementsCoil.push({'name': 'Winding ' + (i + 1)}); } } }, @@ -168,7 +168,7 @@ export default { newElementsCoil.push(this.masStore.mas.magnetic.coil.functionalDescription[i]); } else { - newElementsCoil.push({'name': toTitleCase(isolationSideOrdered[i])}); + newElementsCoil.push({'name': 'Winding ' + (i + 1)}); } } for (var operationPointIndex = 0; operationPointIndex < this.masStore.mas.inputs.operatingPoints.length; operationPointIndex++) { diff --git a/src/components/Toolbox/DesignRequirements/ArrayElementFromList.vue b/src/components/Toolbox/DesignRequirements/ArrayElementFromList.vue index 56f34476..81828842 100644 --- a/src/components/Toolbox/DesignRequirements/ArrayElementFromList.vue +++ b/src/components/Toolbox/DesignRequirements/ArrayElementFromList.vue @@ -2,7 +2,6 @@ import { useMasStore } from '../../../stores/mas' import { toTitleCase, getMultiplier, combinedStyle, combinedClass } from 'WebSharedComponents/assets/js/utils.js' import ElementFromList from 'WebSharedComponents/DataInput/ElementFromList.vue' -import { isolationSideOrdered } from 'WebSharedComponents/assets/js/defaults.js'