From e4d74b126b71ed08899db4e14905215a36ca6dac Mon Sep 17 00:00:00 2001 From: CasVT Date: Sat, 14 Jan 2023 16:16:24 +0100 Subject: [PATCH] Added notification service redirect on add button If no notification services are setup, clicking the add button on the home page will now redirect you to the notification services page instead of doing nothing. --- frontend/static/js/add.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/frontend/static/js/add.js b/frontend/static/js/add.js index 8e60c7c..8239a7e 100644 --- a/frontend/static/js/add.js +++ b/frontend/static/js/add.js @@ -39,6 +39,8 @@ function addReminder() { function showAdd() { if (!document.getElementById('add-entry').classList.contains('error')) { showWindow('add'); + } else { + showWindow('notification'); }; };