This commit is contained in:
2021-02-04 23:55:40 +00:00
parent 809befbdb0
commit 951f0fafd6
3 changed files with 15 additions and 14 deletions

View File

@@ -34,7 +34,7 @@ export default new Vuex.Store({
enums: {}, //all enum values with translated text to match stored as key e.g. enums:={AuthorizationRoles:{0:"no role",1:"Limited role"},UserTypes:{0:"Technician",1:"Client user"}}
userOptions: {
languageOverride: "en-US",
timeZoneOverride: "America/New_York",
timeZoneOverride: null, //use browser tz by default
currencyName: "USD",
hour12: true,
uiColor: "#000000",
@@ -85,7 +85,7 @@ export default new Vuex.Store({
state.formCustomTemplate = {};
state.apiUrl = "";
state.userOptions.languageOverride = "en-US";
state.userOptions.timeZoneOverride = "America/New_York";
state.userOptions.timeZoneOverride = null;
state.userOptions.currencyName = "USD";
state.userOptions.hour12 = true;
state.userOptions.uiColor = "#000000";