This commit is contained in:
2022-03-07 00:04:40 +00:00
parent 071318113f
commit a104eed994

View File

@@ -249,6 +249,19 @@
@input="fieldValueChanged('tags')" @input="fieldValueChanged('tags')"
></gz-tag-picker> ></gz-tag-picker>
</v-col> </v-col>
<v-col cols="12">
<v-textarea
ref="template"
v-model="obj.template"
:readonly="formState.readOnly"
:label="$ay.t('EmailTemplate')"
:error-messages="form().serverErrors(this, 'template')"
data-cy="template"
auto-grow
@input="fieldValueChanged('template')"
></v-textarea>
</v-col>
</v-row> </v-row>
</v-tab-item> </v-tab-item>
<v-tab-item class="mt-4 ml-2"> <v-tab-item class="mt-4 ml-2">
@@ -967,7 +980,8 @@ async function fetchTranslatedText() {
"CustomerServiceRequest", "CustomerServiceRequest",
"WorkOrder", "WorkOrder",
"Quote", "Quote",
"WhoWillBeNotified" "WhoWillBeNotified",
"EmailTemplate"
]); ]);
} }