MT#54497 do not change options 'description' on option change

Change-Id: Ic6fd558751afe31455e0d89abb07dfd133ba819a
pull/19/head
CORP\franci11 2 years ago committed by Hugo Zigha
parent ab8e008b4f
commit d83cb7f3a8

@ -194,6 +194,7 @@
"Group/Seat/Pilot": "Group/Seat/Pilot",
"Groups": "Groups",
"Hide number within own PBX": "Hide number within own PBX",
"Hide your number to the callee": "Hide your number to the callee",
"Hunt Policy": "Hunt Policy",
"Hunt Timeout": "Hunt Timeout",
"Hunt timeout": "Hunt timeout",

@ -11,7 +11,7 @@
>
<q-item-section>
<q-toggle
:label="privacyLabel"
:label="$t('Hide your number to the callee')"
:value="privacy"
:disable="privacyLoading"
checked-icon="visibility_off"
@ -53,13 +53,6 @@ export default {
return {}
},
computed: {
privacyLabel () {
if (this.privacy) {
return this.$t('Your number is hidden to the callee')
} else {
return this.$t('Your number is visible to the callee')
}
},
fieldIcon () {
if (!this.privacy) {
return 'visibility'

Loading…
Cancel
Save