This commit is contained in:
2022-03-07 20:50:19 +00:00
parent dd3b236146
commit 34707ddcb6

View File

@@ -252,6 +252,18 @@
></gz-tag-picker>
</v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-text-field
ref="subject"
v-model="obj.subject"
:readonly="formState.readOnly"
:label="$ay.t('Subject')"
:rules="[form().required(this, 'subject')]"
:error-messages="form().serverErrors(this, 'subject')"
@input="fieldValueChanged('subject')"
></v-text-field>
</v-col>
<v-col cols="12">
<v-textarea
ref="template"
@@ -502,7 +514,9 @@ export default {
decValue: 0,
linkReportId: null,
tags: [],
customerTags: []
customerTags: [],
template: null,
subject: null
},
formState: {
ready: false,