geomui 0.5.31 → 0.5.33
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/initStore.js +4 -0
- package/package.json +1 -1
package/dist/initStore.js
CHANGED
|
@@ -6,7 +6,9 @@ function initStore(designDefs) {
|
|
|
6
6
|
for (const design of Object.keys(designDefs)) {
|
|
7
7
|
const designParam = {};
|
|
8
8
|
for (const param of designDefs[design].pDef.params) {
|
|
9
|
+
//if (param.pType !== PType.eSectionSeparator) {
|
|
9
10
|
designParam[param.name] = param.init;
|
|
11
|
+
//}
|
|
10
12
|
}
|
|
11
13
|
iniPV[design] = designParam;
|
|
12
14
|
}
|
|
@@ -39,7 +41,9 @@ function incrStore(oneDesignDef) {
|
|
|
39
41
|
const dName = oneDesignDef.pDef.partName;
|
|
40
42
|
const dParams = {};
|
|
41
43
|
for (const param of oneDesignDef.pDef.params) {
|
|
44
|
+
//if (param.pType !== PType.eSectionSeparator) {
|
|
42
45
|
dParams[param.name] = param.init;
|
|
46
|
+
//}
|
|
43
47
|
}
|
|
44
48
|
updateStore(dName, dParams, false);
|
|
45
49
|
}
|