Skip to content

Commit 8cb5b47

Browse files
committed
Make text area optional
1 parent 016c4d7 commit 8cb5b47

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/Cards/KnowledgeEquityCreateWikiWizardStep.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
placeholder="If you’d like, please tell us in what way(s). For example, through the knowledge it contributes and/or the people holding and sharing it."
3636
counter="3000"
3737
v-model="value.freeTextResponse"
38-
:rules="[() => !!(value.freeTextResponse && value.freeTextResponse.length <= 3000) || 'Text must be 3000 characters or less.' ]"
38+
:rules="[() => !!value.freeTextResponse.length <= 3000 || 'Text must be 3000 characters or less.' ]"
3939
/>
4040
<v-alert
4141
outlined

0 commit comments

Comments
 (0)