Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Cards/CreateWikiWizardStepThree.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
</v-toolbar>

<v-card-text>
<v-form ref="inputForm">
<v-form ref="inputForm" v-on:submit.prevent>
<h3>How long do you plan to use this Wikibase?</h3>

<v-radio-group
v-model="value.temporality"

Check warning on line 16 in src/components/Cards/CreateWikiWizardStepThree.vue

View workflow job for this annotation

GitHub Actions / build (22)

Unexpected mutation of "value" prop
:error-messages=error
:rules="[() => !!value.temporality || 'Please select an option.']"
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Cards/CreateWikiWizardStepTwo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

<v-card-text>
<h3>What best describes how you intend to use this Wikibase?</h3>
<v-form ref="inputForm">
<v-form ref="inputForm" v-on:submit.prevent>
<v-radio-group v-model="value.purpose" :rules="[() => !!value.purpose || 'Please select an option.']">
<v-radio value="data_hub" ref="test">
<template v-slot:label>
Expand Down
Loading