chore(options): changed default autofill values from false to true

This commit is contained in:
2026-01-30 20:44:29 +01:00
parent bfd14a8471
commit 19ed3d6a1c
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -110,9 +110,9 @@ export default defineComponent({
}, },
mounted() { mounted() {
this.incrementOnSave = this.getOrderSetting('save-increment') === 'true'; this.incrementOnSave = this.getOrderSetting('save-increment') !== 'false';
this.incrementOnCopy = this.getOrderSetting('copy-increment') === 'true'; this.incrementOnCopy = this.getOrderSetting('copy-increment') !== 'false';
this.updateDate = this.getOrderSetting('update-date') === 'true'; this.updateDate = this.getOrderSetting('update-date') !== 'false';
}, },
computed: { computed: {
@@ -144,7 +144,7 @@ export default defineComponent({
}, },
created() { created() {
this.fillCheckpointName = window.localStorage.getItem('fill-checkpoint') == 'true'; this.fillCheckpointName = window.localStorage.getItem('fill-checkpoint') !== 'false';
this.fetchSceneriesData(); this.fetchSceneriesData();
}, },