diff --git a/services/web/frontend/js/main/project-list/notifications-controller.js b/services/web/frontend/js/main/project-list/notifications-controller.js index 262c86a311..e3963b5b37 100644 --- a/services/web/frontend/js/main/project-list/notifications-controller.js +++ b/services/web/frontend/js/main/project-list/notifications-controller.js @@ -28,10 +28,10 @@ App.controller('DismissableNotificationsController', function( localStorage ) { $scope.shouldShowNotification = - localStorage('dismissed-covid-19-notification') !== true + localStorage('dismissed-covid-19-notification-extended') !== true $scope.dismiss = () => { - localStorage('dismissed-covid-19-notification', true) + localStorage('dismissed-covid-19-notification-extended', true) $scope.shouldShowNotification = false } })