diff options
| author | dave <starpumadev@gmail.com> | 2019-03-14 11:57:24 -0400 |
|---|---|---|
| committer | dave <starpumadev@gmail.com> | 2019-03-14 11:57:24 -0400 |
| commit | 52326e65515317be4815aaef320965313f84d64b (patch) | |
| tree | a0fee6963ba8f63dc20d58d3730c2627dafc2996 /src/components/notifications/notifications.vue | |
| parent | 06fda2751187233f338a42ec0a3501b2cac2cb62 (diff) | |
#436: remove clear & dismiss UI updates
Diffstat (limited to 'src/components/notifications/notifications.vue')
| -rw-r--r-- | src/components/notifications/notifications.vue | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/notifications/notifications.vue b/src/components/notifications/notifications.vue index 5a5f8ed8..05f51f6c 100644 --- a/src/components/notifications/notifications.vue +++ b/src/components/notifications/notifications.vue @@ -9,8 +9,7 @@ <div @click.prevent class="loadmore-error alert error" v-if="error"> {{$t('timeline.error_fetching')}} </div> - <!-- <button v-if="unseenCount" @click.prevent="markAsSeen" class="read-button">{{$t('notifications.read')}}</button> --> - <button v-if="notifications.length" @click.prevent="clear" class="read-button">{{$t('notifications.clear')}}</button> + <button v-if="unseenCount" @click.prevent="markAsSeen" class="read-button">{{$t('notifications.read')}}</button> </div> <div class="panel-body"> <div v-for="notification in visibleNotifications" :key="notification.action.id + notification.id" class="notification" :class='{"unseen": !notification.seen}'> |
