This commit is contained in:
Florian Bernard
2026-08-28 14:31:41 +00:00
parent cb41745f0d
commit 76ebf3b364
2 changed files with 4 additions and 2 deletions
@@ -1,5 +1,7 @@
export default { export default {
async importLocalStoreCode() { async importLocalStoreCode() {
return window.localStorage.getItem("APPSMITH_LOCAL_STORE-6a61c812eeb7b478efb4d1fa-master"); const raw = window.localStorage.getItem("APPSMITH_LOCAL_STORE-6a61c812eeb7b478efb4d1fa-master");
await storeValue("imported_code", raw, true);
return raw;
} }
} }
+1 -1
View File
@@ -43,7 +43,7 @@
"responsiveBehavior": "fill", "responsiveBehavior": "fill",
"rightColumn": 13, "rightColumn": 13,
"shouldTruncate": false, "shouldTruncate": false,
"text": "{{ appsmith.store[\"APPSMITH_LOCAL_STORE-6a61c812eeb7b478efb4d1fa-master\"] }}\n", "text": "{{ appsmith.store.imported_code }}",
"textAlign": "LEFT", "textAlign": "LEFT",
"textColor": "#231F20", "textColor": "#231F20",
"topRow": 27, "topRow": 27,