fix: DomainAdd event bubbling

This commit is contained in:
axolotle 2024-03-18 16:25:36 +01:00
parent 6229e40ca8
commit 2156196f8b
2 changed files with 3 additions and 1 deletions

View file

@ -7,7 +7,7 @@
:id="id"
:inline="inline"
:class="formClasses"
@submit.prevent="onSubmit"
@submit.prevent.stop="onSubmit"
novalidate
>
<slot name="default" />

View file

@ -131,6 +131,8 @@ import {
export default {
name: 'DomainForm',
inheritAttrs: false,
props: {
title: { type: String, required: true },
submitText: { type: String, default: null },