mirror of
https://github.com/Bubka/2FAuth.git
synced 2025-02-18 11:20:49 +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="columns is-multiline is-centered is-gapless">
|
||||||
<div class="column is-narrow" v-for="account in filteredAccounts">
|
<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)">
|
<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 }}
|
{{ account.service }}
|
||||||
<span class="is-family-primary is-size-6 has-text-grey">{{ account.account }}</span>
|
<span class="is-family-primary is-size-6 has-text-grey">{{ account.account }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
<span class="tag is-black is-large" v-if="tempIcon">
|
<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>
|
<button class="delete is-small" @click.prevent="deleteIcon"></button>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -53,7 +53,7 @@
|
|||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
<span class="tag is-black is-large" v-if="tempIcon">
|
<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>
|
<button class="delete is-small" @click.prevent="deleteIcon"></button>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user