We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae75d36 commit 97a54fbCopy full SHA for 97a54fb
client/packages/lowcoder/src/util/localStorageUtil.ts
@@ -106,11 +106,11 @@ export function getMainCompValue(): object {
106
export type HomeLayoutType = "list" | "card";
107
108
export function saveHomeLayout(layout: HomeLayoutType) {
109
- localStorage.setItem("home_layout", layout);
+ localStorage.setItem("lowcoder_home_layout", layout);
110
}
111
112
export function getHomeLayout(): HomeLayoutType {
113
- const layout = localStorage.getItem("home_layout");
+ const layout = localStorage.getItem("lowcoder_home_layout");
114
return layout === "list" || layout === "card" ? layout : "card";
115
116
0 commit comments