mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-04-02 20:06:16 +02:00
Prevent form submit when deleting an icon
This commit is contained in:
parent
0e79209b6d
commit
4432bc2a9b
@ -65,7 +65,7 @@
|
|||||||
</label>
|
</label>
|
||||||
<span class="tag is-black is-large" v-if="twofaccount.icon.length > 0">
|
<span class="tag is-black is-large" v-if="twofaccount.icon.length > 0">
|
||||||
<img class="icon-preview" :src="twofaccount.icon" >
|
<img class="icon-preview" :src="twofaccount.icon" >
|
||||||
<button class="delete is-small" @click="deleteIcon"></button>
|
<button class="delete is-small" @click.prevent="deleteIcon"></button>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
</label>
|
</label>
|
||||||
<span class="tag is-black is-large" v-if="twofaccount.icon">
|
<span class="tag is-black is-large" v-if="twofaccount.icon">
|
||||||
<img class="icon-preview" :src="'../' + twofaccount.icon" >
|
<img class="icon-preview" :src="'../' + twofaccount.icon" >
|
||||||
<button class="delete is-small" @click="deleteIcon"></button>
|
<button class="delete is-small" @click.prevent="deleteIcon"></button>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user