diff options
| author | eal <eal@waifu.club> | 2017-12-23 19:52:16 +0200 |
|---|---|---|
| committer | eal <eal@waifu.club> | 2017-12-23 19:52:16 +0200 |
| commit | b67c50606250d2c2d4b3750affdbab6525872f2a (patch) | |
| tree | bb45758ecab1ef87976c07d37b6936a3531e2b13 /src/components/notifications/notifications.vue | |
| parent | 581e3e836ad6c8a9a211eb09d7eaa1fbaf830da2 (diff) | |
| parent | 6fd309452a1d8243257bc8544429ea53a26ce8a4 (diff) | |
Merge branch 'develop' into feature/normal-emoji-completion
Diffstat (limited to 'src/components/notifications/notifications.vue')
| -rw-r--r-- | src/components/notifications/notifications.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/notifications/notifications.vue b/src/components/notifications/notifications.vue index 64624873..b341fcef 100644 --- a/src/components/notifications/notifications.vue +++ b/src/components/notifications/notifications.vue @@ -4,7 +4,7 @@ <div class="panel-heading base02-background base04"> <span class="unseen-count" v-if="unseenCount">{{unseenCount}}</span> {{$t('notifications.notifications')}} - <button @click.prevent="markAsSeen" class="base04 base02-background read-button">{{$t('notifications.read')}}</button> + <button v-if="unseenCount" @click.prevent="markAsSeen" class="base04 base02-background read-button">{{$t('notifications.read')}}</button> </div> <div class="panel-body base03-border"> <div v-for="notification in visibleNotifications" :key="notification" class="notification" :class='{"unseen": !notification.seen}'> @@ -17,7 +17,7 @@ <div v-if="notification.type === 'favorite'"> <h1> <span :title="'@'+notification.action.user.screen_name">{{ notification.action.user.name }}</span> - <i class="fa icon-star"></i> + <i class="fa icon-star lit"></i> <small><router-link :to="{ name: 'conversation', params: { id: notification.status.id } }"><timeago :since="notification.action.created_at" :auto-update="240"></timeago></router-link></small> </h1> <div class="notification-gradient" :style="hiderStyle"></div> |
