fix(ux): don't disable input for auto resolve (#11428)
This commit is contained in:
@@ -70,7 +70,7 @@
|
|||||||
},
|
},
|
||||||
"AUTO_RESOLVE_DURATION": {
|
"AUTO_RESOLVE_DURATION": {
|
||||||
"LABEL": "Inactivity duration for resolution",
|
"LABEL": "Inactivity duration for resolution",
|
||||||
"HELP": "Duration after a ticket should auto resolve if there is no activity",
|
"HELP": "Duration after a conversation should auto resolve if there is no activity",
|
||||||
"PLACEHOLDER": "30",
|
"PLACEHOLDER": "30",
|
||||||
"ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
|
"ERROR": "Please enter a valid auto resolve duration (minimum 1 day and maximum 999 days)",
|
||||||
"API": {
|
"API": {
|
||||||
|
|||||||
@@ -85,7 +85,6 @@ const toggleAutoResolve = async () => {
|
|||||||
<!-- allow 10 mins to 999 days -->
|
<!-- allow 10 mins to 999 days -->
|
||||||
<DurationInput
|
<DurationInput
|
||||||
v-model="duration"
|
v-model="duration"
|
||||||
:disabled="!isEnabled"
|
|
||||||
min="10"
|
min="10"
|
||||||
max="1439856"
|
max="1439856"
|
||||||
class="w-full"
|
class="w-full"
|
||||||
@@ -101,7 +100,6 @@ const toggleAutoResolve = async () => {
|
|||||||
<TextArea
|
<TextArea
|
||||||
v-model="message"
|
v-model="message"
|
||||||
class="w-full"
|
class="w-full"
|
||||||
:disabled="!isEnabled"
|
|
||||||
:placeholder="
|
:placeholder="
|
||||||
t('GENERAL_SETTINGS.FORM.AUTO_RESOLVE_DURATION.MESSAGE_PLACEHOLDER')
|
t('GENERAL_SETTINGS.FORM.AUTO_RESOLVE_DURATION.MESSAGE_PLACEHOLDER')
|
||||||
"
|
"
|
||||||
|
|||||||
Reference in New Issue
Block a user