forked from AkkomaGang/akkoma-fe
move favicon to name
This commit is contained in:
parent
88fbbb5e9b
commit
6d2befa452
1 changed files with 7 additions and 2 deletions
|
@ -121,6 +121,11 @@
|
||||||
:to="userProfileLink"
|
:to="userProfileLink"
|
||||||
>
|
>
|
||||||
{{ status.user.screen_name }}
|
{{ status.user.screen_name }}
|
||||||
|
<img
|
||||||
|
height="18px"
|
||||||
|
v-if="!!(status.user && status.user.favicon)"
|
||||||
|
:src="status.user.favicon"
|
||||||
|
>
|
||||||
</router-link>
|
</router-link>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -154,14 +159,14 @@
|
||||||
height="18px"
|
height="18px"
|
||||||
v-if="!!(status.user && status.user.favicon)"
|
v-if="!!(status.user && status.user.favicon)"
|
||||||
:src="status.user.favicon"
|
:src="status.user.favicon"
|
||||||
/>
|
>
|
||||||
<i v-else class="button-icon icon-link-ext-alt" />
|
<i v-else class="button-icon icon-link-ext-alt" />
|
||||||
</a>
|
</a>
|
||||||
<img
|
<img
|
||||||
v-else-if="!!(status.user && status.user.favicon)"
|
v-else-if="!!(status.user && status.user.favicon)"
|
||||||
height="18px"
|
height="18px"
|
||||||
:src="status.user.favicon"
|
:src="status.user.favicon"
|
||||||
/>
|
>
|
||||||
<template v-if="expandable && !isPreview">
|
<template v-if="expandable && !isPreview">
|
||||||
<a
|
<a
|
||||||
href="#"
|
href="#"
|
||||||
|
|
Loading…
Reference in a new issue