We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d5bab5 commit d9995e1Copy full SHA for d9995e1
1 file changed
apps/files/src/components/TemplateFiller.vue
@@ -9,8 +9,8 @@
9
<form>
10
<h3>{{ t('files', 'Fill template fields') }}</h3>
11
12
- <!-- We will support more than just text fields in the future -->
13
<div v-for="field in fields" :key="field.index">
+ <!-- Maybe there's a better way to create the proper component than just v-if -->
14
<TemplateTextField v-if="field.type == 'rich-text'"
15
:field="field"
16
@input="trackInput" />
@@ -33,7 +33,7 @@
33
</NcModal>
34
</template>
35
36
-<script lang="ts">
+<script>
37
import { defineComponent } from 'vue'
38
import { NcModal, NcButton, NcLoadingIcon } from '@nextcloud/vue'
39
import { translate as t } from '@nextcloud/l10n'
0 commit comments