From 13deca8ddcee90f18b1bb8f63070009eddd49407 Mon Sep 17 00:00:00 2001 From: Azri Kahar <42867097+azrikahar@users.noreply.github.com> Date: Thu, 2 Dec 2021 03:39:07 +0800 Subject: [PATCH] fix template fields not clickable when editing (#9838) --- app/src/components/v-field-template/v-field-template.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/src/components/v-field-template/v-field-template.vue b/app/src/components/v-field-template/v-field-template.vue index 60a6b68b33..f0a03e4b26 100644 --- a/app/src/components/v-field-template/v-field-template.vue +++ b/app/src/components/v-field-template/v-field-template.vue @@ -287,7 +287,9 @@ export default defineComponent({ if (!field) return ''; - return ``; + return ``; }) .join(''); contentEl.value.innerHTML = newInnerHTML;