Fix edit subscription not loading

This commit is contained in:
ellite 2023-11-10 16:48:05 +01:00
parent e4b8b8d4a0
commit 92da65564b

View File

@ -62,7 +62,9 @@ function fillEditFormFields(subscription) {
notes.value = subscription.notes;
const notifications = document.querySelector("#notifications");
notifications.checked = subscription.notify;
if (notifications) {
notifications.checked = subscription.notify;
}
const deleteButton = document.querySelector("#deletesub");
deleteButton.style = 'display: block';