Skip to content
Snippets Groups Projects
Commit c0a175d2 authored by Agate's avatar Agate :speech_balloon:
Browse files

Fixed broken enter submit on login form

parent 639cfe54
Branches
Tags 0.2.2
No related merge requests found
...@@ -7,10 +7,10 @@ ...@@ -7,10 +7,10 @@
@input="$emit('input', $event.target.value)" @input="$emit('input', $event.target.value)"
:id="fieldId" :id="fieldId"
:value="value"> :value="value">
<button @click.prevent="showPassword = !showPassword" :title="labels.title" class="ui icon button"> <button @click.prevent="showPassword = !showPassword" type="button" :title="labels.title" class="ui icon button">
<i class="eye icon"></i> <i class="eye icon"></i>
</button> </button>
<button v-if="copyButton" @click.prevent="copy" class="ui icon button" :title="labels.copy"> <button v-if="copyButton" @click.prevent="copy" type="button" class="ui icon button" :title="labels.copy">
<i class="copy icon"></i> <i class="copy icon"></i>
</button> </button>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment