Skip to content

Commit 0e4bc0b

Browse files
authored
Prevent fields from submitting wiki profile form (#984)
1 parent 316164c commit 0e4bc0b

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/Cards/CreateWikiWizardStepThree.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</v-toolbar>
1010

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

1515
<v-radio-group

src/components/Cards/CreateWikiWizardStepTwo.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

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

0 commit comments

Comments
 (0)