@bit-sun/business-component 2.3.22-beta4 → 2.3.22-beta5
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/index.esm.js
CHANGED
|
@@ -13412,7 +13412,7 @@ var BsSulaQueryTable = (function (props) {
|
|
|
13412
13412
|
if (!authButton.filter(function (itemInner) {
|
|
13413
13413
|
return Item === itemInner;
|
|
13414
13414
|
}).length) {
|
|
13415
|
-
resourceCodeArray[item].visible =
|
|
13415
|
+
resourceCodeArray[item].visible = true;
|
|
13416
13416
|
}
|
|
13417
13417
|
});
|
|
13418
13418
|
}
|
package/dist/index.js
CHANGED
|
@@ -13431,7 +13431,7 @@ var BsSulaQueryTable = (function (props) {
|
|
|
13431
13431
|
if (!authButton.filter(function (itemInner) {
|
|
13432
13432
|
return Item === itemInner;
|
|
13433
13433
|
}).length) {
|
|
13434
|
-
resourceCodeArray[item].visible =
|
|
13434
|
+
resourceCodeArray[item].visible = true;
|
|
13435
13435
|
}
|
|
13436
13436
|
});
|
|
13437
13437
|
}
|
package/package.json
CHANGED
|
@@ -157,7 +157,7 @@ export default (props: any) => {
|
|
|
157
157
|
Item = item.substr(0, item.length - 1);
|
|
158
158
|
}
|
|
159
159
|
if (!authButton.filter((itemInner: any) => Item === itemInner).length) {
|
|
160
|
-
resourceCodeArray[item].visible =
|
|
160
|
+
resourceCodeArray[item].visible = true;
|
|
161
161
|
}
|
|
162
162
|
});
|
|
163
163
|
|