diff --git a/src/view/Dashboard/Example/TestWithTemplate/TestWithTemplateForm.vue b/src/view/Dashboard/Example/TestWithTemplate/TestWithTemplateForm.vue index 1af0fa2..0c3ec14 100644 --- a/src/view/Dashboard/Example/TestWithTemplate/TestWithTemplateForm.vue +++ b/src/view/Dashboard/Example/TestWithTemplate/TestWithTemplateForm.vue @@ -160,7 +160,7 @@ export default { storage: {}, errors: {}, status: { - description: ['Houston, we have a problem'] + description: [] }, activeHidden: false, descriptionLabel: '', @@ -224,6 +224,10 @@ export default { /** */ created () { + this.hook('fetch:record', function () { + window.setTimeout(() => { this.status.description = ['Houston, we have a problem'] }, 500) + }) + this.descriptionLabel = this.$t('example.textWithTemplateForm.fields.description') }, /**