venus-design 1.0.64 → 1.0.65
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.
|
@@ -109,7 +109,7 @@ export var handleColumnFilterFns = function handleColumnFilterFns(columnList, fi
|
|
|
109
109
|
export var getMenuId = function getMenuId() {
|
|
110
110
|
var usermenu = storage.getSessionItem("usermenu");
|
|
111
111
|
var menuID = usermenu[window.location.pathname];
|
|
112
|
-
return menuID.id || "-1";
|
|
112
|
+
return (menuID === null || menuID === void 0 ? void 0 : menuID.id) || "-1";
|
|
113
113
|
};
|
|
114
114
|
|
|
115
115
|
/**
|