mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-26 10:15:40 +01:00
Attempt to fix image not showing up after deployment
This commit is contained in:
parent
775d71395a
commit
89733de742
@ -19,7 +19,7 @@
|
||||
<div class="columns is-multiline is-centered is-gapless">
|
||||
<div class="column is-narrow" v-for="account in filteredAccounts">
|
||||
<div class="tfa has-background-black-bis has-text-white is-size-3" @click.stop="showAccount(account.id)">
|
||||
<img :src="'storage/icons/' + account.icon" v-if="account.icon">
|
||||
<img :src="'/storage/icons/' + account.icon" v-if="account.icon">
|
||||
{{ account.service }}
|
||||
<span class="is-family-primary is-size-6 has-text-grey">{{ account.account }}</span>
|
||||
</div>
|
||||
|
@ -65,7 +65,7 @@
|
||||
</span>
|
||||
</label>
|
||||
<span class="tag is-black is-large" v-if="tempIcon">
|
||||
<img class="icon-preview" :src="'storage/icons/' + tempIcon" >
|
||||
<img class="icon-preview" :src="'/storage/icons/' + tempIcon" >
|
||||
<button class="delete is-small" @click.prevent="deleteIcon"></button>
|
||||
</span>
|
||||
</div>
|
||||
|
@ -53,7 +53,7 @@
|
||||
</span>
|
||||
</label>
|
||||
<span class="tag is-black is-large" v-if="tempIcon">
|
||||
<img class="icon-preview" :src="'../storage/icons/' + tempIcon" >
|
||||
<img class="icon-preview" :src="'/storage/icons/' + tempIcon" >
|
||||
<button class="delete is-small" @click.prevent="deleteIcon"></button>
|
||||
</span>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user