From f0c280af1a1ed7b9500e49de2aa687afdf8ae93b Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Thu, 28 Jun 2018 17:22:15 +0900 Subject: [PATCH] Notification links are no longer opened in new tabs --- pages/notifications/notifications.pixy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/notifications/notifications.pixy b/pages/notifications/notifications.pixy index 4bdedc9c..b7e94655 100644 --- a/pages/notifications/notifications.pixy +++ b/pages/notifications/notifications.pixy @@ -24,7 +24,7 @@ component AllNotifications(notifications []*arn.Notification) a(href=notification.User().Link())= notification.User().Nick component Notification(notification *arn.Notification) - a.notification(href=notification.Link, target="_blank", data-seen=notification.Seen, data-id=notification.ID) + a.notification(href=notification.Link, data-seen=notification.Seen, data-id=notification.ID) .notification-icon img.lazy(data-src=notification.Icon, alt=notification.Title)