Fixed the buttons of ActionsSelect and ActionsInput having a default type="submit" (#4162)

* fixed the buttons having a default type="submit"

* fixed linting issue
This commit is contained in:
Frank Elsinga 2023-12-03 18:15:40 +01:00 committed by GitHub
parent 37666bf35f
commit 9c56c9b346
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -8,7 +8,7 @@
:placeholder="placeholder"
:disabled="!enabled"
>
<button class="btn btn-outline-primary" @click="action()" :aria-label="actionAriaLabel">
<button type="button" class="btn btn-outline-primary" :aria-label="actionAriaLabel" @click="action()">
<font-awesome-icon :icon="icon" />
</button>
</div>