Skip to content

Commit

Permalink
rich text support for prefilled
Browse files Browse the repository at this point in the history
  • Loading branch information
chiragchhatrala committed Nov 25, 2024
1 parent fbd58d1 commit a3ee265
Showing 1 changed file with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -448,8 +448,15 @@
:multiple="field.multiple === true"
:move-to-form-assets="true"
/>
<rich-text-area-input
v-else-if="field.type === 'rich_text'"
name="prefill"
class="mt-3"
:form="field"
label="Pre-filled value"
/>
<text-input
v-else-if="!['files', 'signature'].includes(field.type)"
v-else-if="!['files', 'signature', 'rich_text'].includes(field.type)"
name="prefill"
class="mt-3"
:form="field"
Expand Down

0 comments on commit a3ee265

Please sign in to comment.