sasp-flow-render 1.1.22 → 1.1.23
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/package.json
CHANGED
|
@@ -2249,7 +2249,7 @@
|
|
|
2249
2249
|
let posUserIdArr = [];
|
|
2250
2250
|
checkedUserArr.forEach(item => {
|
|
2251
2251
|
userName += "," + item.dataLabel;
|
|
2252
|
-
userId += "," + item.dataKey.startsWith("user_") ? item.dataKey.replace("user_", "") : item.dataKey;
|
|
2252
|
+
userId += "," + (item.dataKey.startsWith("user_") ? item.dataKey.replace("user_", "") : item.dataKey);
|
|
2253
2253
|
arr.push(item.dataKey.startsWith("user_") ? item.dataKey.replace("user_", "") : item.dataKey);
|
|
2254
2254
|
posUserIdArr.push(item.dataKey.startsWith("user_") ? item.dataKey.replace("user_", "") : item.dataKey);
|
|
2255
2255
|
});
|