mirror of
https://github.com/Spythere/genera-tor.git
synced 2026-05-03 21:48:13 +00:00
chore(options): changed default autofill values from false to true
This commit is contained in:
@@ -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();
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user