diff options
| author | Karol Kosek <krkk@krkk.ct8.pl> | 2020-04-18 18:48:45 +0200 |
|---|---|---|
| committer | Karol Kosek <krkk@krkk.ct8.pl> | 2020-04-18 19:45:24 +0200 |
| commit | 2fbb94fe5c7f6743a699e6e1ccb2cd8de341ccca (patch) | |
| tree | 8434863d3c05303f8d814eef212ca708194ff027 /src | |
| parent | ac9985aedbc2ed53121eec06a95013186c4eefd4 (diff) | |
Fix user names with the RTL char in notifications
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/notification/notification.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/notification/notification.vue b/src/components/notification/notification.vue index 411c0271..51875747 100644 --- a/src/components/notification/notification.vue +++ b/src/components/notification/notification.vue @@ -47,7 +47,7 @@ <span class="notification-details"> <div class="name-and-action"> <!-- eslint-disable vue/no-v-html --> - <span + <bdi v-if="!!notification.from_profile.name_html" class="username" :title="'@'+notification.from_profile.screen_name" |
