forked from AkkomaGang/akkoma-fe
fix a bunch of <button>s acting as submit buttons breaking enter key
This commit is contained in:
parent
de66267a07
commit
982c799b6f
7 changed files with 16 additions and 1 deletions
|
@ -10,6 +10,7 @@
|
|||
v-if="!hideEmojiButton"
|
||||
class="button-unstyled emoji-picker-icon"
|
||||
@click.prevent="togglePicker"
|
||||
type="button"
|
||||
>
|
||||
<FAIcon :icon="['far', 'smile-beam']" />
|
||||
</button>
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
<button
|
||||
class="button-unstyled -link"
|
||||
@click.prevent="requireTOTP"
|
||||
type="button"
|
||||
>
|
||||
{{ $t('login.enter_two_factor_code') }}
|
||||
</button>
|
||||
|
@ -33,6 +34,7 @@
|
|||
<button
|
||||
class="button-unstyled -link"
|
||||
@click.prevent="abortMFA"
|
||||
type="button"
|
||||
>
|
||||
{{ $t('general.cancel') }}
|
||||
</button>
|
||||
|
|
|
@ -28,6 +28,7 @@
|
|||
<button
|
||||
class="button-unstyled -link"
|
||||
@click.prevent="requireRecovery"
|
||||
type="button"
|
||||
>
|
||||
{{ $t('login.enter_recovery_code') }}
|
||||
</button>
|
||||
|
@ -35,6 +36,7 @@
|
|||
<button
|
||||
class="button-unstyled -link"
|
||||
@click.prevent="abortMFA"
|
||||
type="button"
|
||||
>
|
||||
{{ $t('general.cancel') }}
|
||||
</button>
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
:class="css.direct"
|
||||
:title="$t('post_status.scope.direct')"
|
||||
@click="changeVis('direct')"
|
||||
type="button"
|
||||
>
|
||||
<FAIcon
|
||||
icon="envelope"
|
||||
|
@ -21,6 +22,7 @@
|
|||
:class="css.private"
|
||||
:title="$t('post_status.scope.private')"
|
||||
@click="changeVis('private')"
|
||||
type="button"
|
||||
>
|
||||
<FAIcon
|
||||
icon="lock"
|
||||
|
@ -33,6 +35,7 @@
|
|||
:class="css.unlisted"
|
||||
:title="$t('post_status.scope.unlisted')"
|
||||
@click="changeVis('unlisted')"
|
||||
type="button"
|
||||
>
|
||||
<FAIcon
|
||||
icon="lock-open"
|
||||
|
@ -45,6 +48,7 @@
|
|||
:class="css.public"
|
||||
:title="$t('post_status.scope.public')"
|
||||
@click="changeVis('public')"
|
||||
type="button"
|
||||
>
|
||||
<FAIcon
|
||||
icon="globe"
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
<button
|
||||
class="btn button-default search-button"
|
||||
@click="newQuery(searchTerm)"
|
||||
type="submit"
|
||||
>
|
||||
<FAIcon icon="search" />
|
||||
</button>
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
class="button-unstyled nav-icon"
|
||||
:title="$t('nav.search')"
|
||||
@click.prevent.stop="toggleHidden"
|
||||
type="button"
|
||||
>
|
||||
<FAIcon
|
||||
fixed-width
|
||||
|
@ -28,6 +29,7 @@
|
|||
<button
|
||||
class="button-default search-button"
|
||||
@click="find(searchTerm)"
|
||||
type="submit"
|
||||
>
|
||||
<FAIcon
|
||||
fixed-width
|
||||
|
@ -37,6 +39,7 @@
|
|||
<button
|
||||
class="button-unstyled cancel-search"
|
||||
@click.prevent.stop="toggleHidden"
|
||||
type="button"
|
||||
>
|
||||
<FAIcon
|
||||
fixed-width
|
||||
|
|
|
@ -93,7 +93,9 @@ export default Vue.component('tab-switcher', {
|
|||
<button
|
||||
disabled={slot.data.attrs.disabled}
|
||||
onClick={this.clickTab(index)}
|
||||
class={classesTab.join(' ')}>
|
||||
class={classesTab.join(' ')}
|
||||
type="button"
|
||||
>
|
||||
<img src={slot.data.attrs.image} title={slot.data.attrs['image-tooltip']}/>
|
||||
{slot.data.attrs.label ? '' : slot.data.attrs.label}
|
||||
</button>
|
||||
|
|
Loading…
Reference in a new issue