removed User uicolor not supporting it in schedule and that was the only place it was used

This commit is contained in:
2021-10-06 22:24:29 +00:00
parent abf411f759
commit 6f2e39aba6
6 changed files with 18 additions and 18 deletions

View File

@@ -376,8 +376,7 @@
></v-text-field>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<!-- https://vuetifyjs.com/en/components/color-pickers -->
<!-- <v-col cols="12" sm="6" lg="4" xl="3">
<span class="text-caption">
{{ $ay.t("UserColor") }}
</span>
@@ -390,7 +389,7 @@
ref="uiColor"
@input="fieldValueChanged('uiColor')"
></v-color-picker>
</v-col>
</v-col> -->
</v-row>
</v-tab-item>
</v-tabs-items>
@@ -505,7 +504,7 @@ export default {
phone2: null,
phone3: null,
mapUrlTemplate: null,
uiColor: "#000000",
// uiColor: "#000000",
languageOverride: null,
timeZoneOverride: null,
currencyName: "USD",

View File

@@ -363,9 +363,9 @@
@click:append-outer="goHelp()"
></v-text-field>
</v-col>
<!--
<v-col cols="12" sm="6" lg="4" xl="3">
<!-- https://vuetifyjs.com/en/components/color-pickers -->
<span class="text-caption">
{{ $ay.t("UserColor") }}
</span>
@@ -378,7 +378,7 @@
ref="uiColor"
@input="fieldValueChanged('uiColor')"
></v-color-picker>
</v-col>
</v-col> -->
</v-row>
</v-tab-item>
</v-tabs-items>
@@ -506,7 +506,7 @@ export default {
phone2: null,
phone3: null,
mapUrlTemplate: null,
uiColor: "#000000",
// uiColor: "#000000",
languageOverride: null,
timeZoneOverride: null,
currencyName: "USD",

View File

@@ -162,8 +162,8 @@
></v-text-field>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<!-- https://vuetifyjs.com/en/components/color-pickers -->
<!-- <v-col cols="12" sm="6" lg="4" xl="3">
<span class="text-caption">
{{ $ay.t("UserColor") }}
</span>
@@ -176,7 +176,7 @@
ref="uiColor"
@input="fieldValueChanged('uiColor')"
></v-color-picker>
</v-col>
</v-col> -->
</v-row>
</v-form>
</v-col>
@@ -238,7 +238,7 @@ export default {
phone2: null,
phone3: null,
mapUrlTemplate: null,
uiColor: null,
//uiColor: null,
languageOverride: null,
timeZoneOverride: null,
currencyName: null,
@@ -372,7 +372,7 @@ export default {
l.timeZoneOverride = this.obj.timeZoneOverride;
l.currencyName = this.obj.currencyName;
l.hour12 = this.obj.hour12;
l.uiColor = this.obj.uiColor;
//l.uiColor = this.obj.uiColor;
l.emailAddress = this.obj.emailAddress;
l.mapUrlTemplate = this.obj.mapUrlTemplate;
window.$gz.store.commit("setUserOptions", l);