This commit is contained in:
2021-10-30 00:18:29 +00:00
parent 9a10d34a79
commit f529a52db0
4 changed files with 146 additions and 92 deletions

View File

@@ -50,6 +50,7 @@ export default new Vuex.Store({
formSettings: {}, //this is the settings on forms that survive a refresh like grid number of items to show etc
formCustomTemplate: {}, //this is the custom fields settings for forms,
darkMode: false,
nativeDateTimeInput: false,
knownPassword: false,
newNotificationCount: 0
},
@@ -198,6 +199,9 @@ export default new Vuex.Store({
setDarkMode(state, data) {
state.darkMode = data;
},
setNativeDateTimeInput(state, data) {
state.nativeDateTimeInput = data;
},
setKnownPassword(state, data) {
state.knownPassword = data;
},