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 c7d3c16 commit aec7f04Copy full SHA for aec7f04
client/src/components/apps/form.vue
@@ -1378,7 +1378,7 @@ export default defineComponent({
1378
},
1379
],
1380
takenDomains: [] as string[],
1381
- advanced: false,
+ advanced: localStorage.getItem('kubero-advanced-app-config') === 'true',
1382
panel: [0],
1383
valid: false,
1384
sleep: "disabled",
@@ -1722,6 +1722,11 @@ export default defineComponent({
1722
return store.kubero;
1723
1724
1725
+ watch: {
1726
+ advanced(newValue) {
1727
+ localStorage.setItem('kubero-advanced-app-config', newValue.toString());
1728
+ },
1729
1730
async mounted() {
1731
this.loading = true;
1732
try {
0 commit comments