@zgfe/business-lib 1.2.40-heyh.3 → 1.2.40-heyh.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.
|
@@ -64,7 +64,7 @@ var BizAttributeSelector = function BizAttributeSelector(props) {
|
|
|
64
64
|
if (hasKey) {
|
|
65
65
|
if (attr.key === param.key) res = attr;
|
|
66
66
|
} else {
|
|
67
|
-
if (attr.name === param.name) res = attr;
|
|
67
|
+
if (attr.name === param.name && attr.id === param.id) res = attr;
|
|
68
68
|
}
|
|
69
69
|
});
|
|
70
70
|
} else if ((param === null || param === void 0 ? void 0 : param.propCategory) === 'eventProp') {
|
|
@@ -74,7 +74,7 @@ var BizAttributeSelector = function BizAttributeSelector(props) {
|
|
|
74
74
|
if (hasKey) {
|
|
75
75
|
if (attr.key === param.key) res = _.cloneDeep(attr);
|
|
76
76
|
} else {
|
|
77
|
-
if (attr.id === param.id) res = _.cloneDeep(attr);
|
|
77
|
+
if (attr.id === param.id && attr.id === param.id) res = _.cloneDeep(attr);
|
|
78
78
|
}
|
|
79
79
|
});
|
|
80
80
|
});
|
|
@@ -85,7 +85,7 @@ var BizAttributeSelector = function BizAttributeSelector(props) {
|
|
|
85
85
|
if (hasKey) {
|
|
86
86
|
if (attr.key === param.key) res = attr;
|
|
87
87
|
} else {
|
|
88
|
-
if (attr.name === param.name && attr.category === param.category) res = attr;
|
|
88
|
+
if (attr.name === param.name && attr.category === param.category && attr.id === param.id) res = attr;
|
|
89
89
|
}
|
|
90
90
|
});
|
|
91
91
|
} else {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zgfe/business-lib",
|
|
3
|
-
"version": "1.2.40-heyh.
|
|
3
|
+
"version": "1.2.40-heyh.4",
|
|
4
4
|
"module": "es/index.js",
|
|
5
5
|
"typings": "es/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"react": "^16.12.0 || ^17.0.0",
|
|
56
56
|
"yorkie": "^2.0.0"
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "3e569c324e3d7cad8302e3986ad9a4f5b9ca48fd",
|
|
59
59
|
"gitHooks": {
|
|
60
60
|
"pre-commit": "lint-staged"
|
|
61
61
|
}
|