This commit is contained in:
@@ -397,7 +397,7 @@
|
||||
v-model="obj.notes"
|
||||
:readonly="formState.readOnly"
|
||||
:disabled="formState.readOnly"
|
||||
:label="$ay.t('WidgetNotes')"
|
||||
:label="$ay.t('CustomerNotes')"
|
||||
:error-messages="form().serverErrors(this, 'notes')"
|
||||
ref="notes"
|
||||
data-cy="notes"
|
||||
@@ -406,6 +406,36 @@
|
||||
></v-textarea>
|
||||
</v-col>
|
||||
|
||||
<v-col v-if="form().showMe(this, 'TechNotes')" cols="12">
|
||||
<v-textarea
|
||||
v-model="obj.techNotes"
|
||||
:readonly="formState.readOnly"
|
||||
:disabled="formState.readOnly"
|
||||
:label="$ay.t('CustomerTechNotes')"
|
||||
:error-messages="form().serverErrors(this, 'techNotes')"
|
||||
ref="techNotes"
|
||||
data-cy="techNotes"
|
||||
@input="fieldValueChanged('techNotes')"
|
||||
auto-grow
|
||||
prepend-icon="$ayiTools"
|
||||
></v-textarea>
|
||||
</v-col>
|
||||
|
||||
<v-col v-if="form().showMe(this, 'PopUpNotes')" cols="12">
|
||||
<v-textarea
|
||||
v-model="obj.popUpNotes"
|
||||
:readonly="formState.readOnly"
|
||||
:disabled="formState.readOnly"
|
||||
:label="$ay.t('CustomerPopUpNotes')"
|
||||
:error-messages="form().serverErrors(this, 'popUpNotes')"
|
||||
ref="popUpNotes"
|
||||
data-cy="popUpNotes"
|
||||
@input="fieldValueChanged('popUpNotes')"
|
||||
auto-grow
|
||||
prepend-icon="$ayiExclamationCircle"
|
||||
></v-textarea>
|
||||
</v-col>
|
||||
|
||||
<v-col v-if="form().showMe(this, 'Tags')" cols="12">
|
||||
<gz-tag-picker
|
||||
v-model="obj.tags"
|
||||
|
||||
Reference in New Issue
Block a user