From 1fbcbe6412779def9850a9822dc8ea13e0bdea7e Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Mon, 3 Jun 2019 13:15:38 -0600 Subject: [PATCH] Update NotificationCard --- .../assets/js/components/NotificationCard.vue | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/resources/assets/js/components/NotificationCard.vue b/resources/assets/js/components/NotificationCard.vue index 364098447..1a3b7d057 100644 --- a/resources/assets/js/components/NotificationCard.vue +++ b/resources/assets/js/components/NotificationCard.vue @@ -19,31 +19,31 @@

- {{truncate(n.account.username)}} liked your post. + {{truncate(n.account.username)}} liked your post.

- {{truncate(n.account.username)}} commented on your post. + {{truncate(n.account.username)}} commented on your post.

- {{truncate(n.account.username)}} mentioned you. + {{truncate(n.account.username)}} mentioned you.

- {{truncate(n.account.username)}} followed you. + {{truncate(n.account.username)}} followed you.

- {{truncate(n.account.username)}} shared your post. + {{truncate(n.account.username)}} shared your post.

-
{{timeAgo(n.created_at)}}
+
{{timeAgo(n.created_at)}}
@@ -73,13 +73,10 @@ }, mounted() { - if(window.outerWidth > 767) { - this.fetchNotifications(); - } + this.fetchNotifications(); }, updated() { - $('[data-toggle="tooltip"]').tooltip() }, methods: {