Updaated all color values to include Alpha value so pickers offer it as an option to user

This commit is contained in:
2022-03-09 16:19:54 +00:00
parent 8b4762c1a3
commit 9f2a01a31b
28 changed files with 48 additions and 51 deletions

View File

@@ -38,7 +38,7 @@ export default new Vuex.Store({
timeZoneOverride: null, //use browser tz by default
currencyName: "USD",
hour12: true,
uiColor: "#000000",
uiColor: "#000000ff",
emailAddress: null,
mapUrlTemplate: null
},
@@ -130,7 +130,7 @@ export default new Vuex.Store({
state.userOptions.timeZoneOverride = null;
state.userOptions.currencyName = "USD";
state.userOptions.hour12 = true;
//state.userOptions.uiColor = "#000000";
//state.userOptions.uiColor = "#000000ff";
state.userOptions.emailAddress = null;
state.userOptions.mapUrlTemplate = null;
state.globalSettings = {};