diff options
| author | Shpuld Shpuldson <shp@cock.li> | 2020-06-18 16:47:32 +0300 |
|---|---|---|
| committer | Shpuld Shpuldson <shp@cock.li> | 2020-06-18 16:47:32 +0300 |
| commit | 6d2befa452d6b42e47968f382a7ff62d4eb0d9b9 (patch) | |
| tree | b70be799d528828ee593a7df4ffa0af3453cd524 /src | |
| parent | 88fbbb5e9bc0f34ab265a4af3151cc96b0b00f0e (diff) | |
move favicon to name
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/status/status.vue | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/components/status/status.vue b/src/components/status/status.vue index ec32b60c..a4d12e3e 100644 --- a/src/components/status/status.vue +++ b/src/components/status/status.vue @@ -121,6 +121,11 @@ :to="userProfileLink" > {{ status.user.screen_name }} + <img + height="18px" + v-if="!!(status.user && status.user.favicon)" + :src="status.user.favicon" + > </router-link> </div> @@ -154,14 +159,14 @@ height="18px" v-if="!!(status.user && status.user.favicon)" :src="status.user.favicon" - /> + > <i v-else class="button-icon icon-link-ext-alt" /> </a> <img v-else-if="!!(status.user && status.user.favicon)" height="18px" :src="status.user.favicon" - /> + > <template v-if="expandable && !isPreview"> <a href="#" |
