diff --git a/dashboard/public/translation/en.json b/dashboard/public/translation/en.json index f299013e4..f8e724a99 100644 --- a/dashboard/public/translation/en.json +++ b/dashboard/public/translation/en.json @@ -47,7 +47,8 @@ "next": "Next", "configure": "Configure", "restart": "Restart", - "reset": "Reset" + "reset": "Reset", + "loadMore": "Load more" }, "rebootDialog": { "title": "Reboot Server", @@ -870,7 +871,12 @@ "settingsDialog": { "description": "An email will be sent for the selected events to your primary email." }, - "allCaughtUp": "All caught up" + "allCaughtUp": "All caught up", + "title": "Notifications", + "showAll": "All", + "showUnread": "Unread", + "markUnread": "Mark as unread", + "markRead": "Mark as read" }, "logs": { "title": "Logs", diff --git a/dashboard/src/views/NotificationsView.vue b/dashboard/src/views/NotificationsView.vue index 1a1ef444f..b1b8ad340 100644 --- a/dashboard/src/views/NotificationsView.vue +++ b/dashboard/src/views/NotificationsView.vue @@ -105,13 +105,12 @@ onMounted(async () => { @@ -200,4 +199,12 @@ onMounted(async () => { display: block; } +.read-state-button { + display: none; +} + +.notification-item:hover .read-state-button { + display: block; +} +