diff options
author | Mario Vavti <mario@mariovavti.com> | 2025-01-06 10:14:54 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2025-01-06 10:14:54 +0100 |
commit | 8fc0e41beb4563844541868b6c427720cf76d5aa (patch) | |
tree | a7031e6fe54b8d7f69a218320a6e5caa1cab8fa2 /view/tpl | |
parent | 3ad63a6e82ce3d7e347c653f2fc9b614f4f7964b (diff) | |
download | volse-hubzilla-8fc0e41beb4563844541868b6c427720cf76d5aa.tar.gz volse-hubzilla-8fc0e41beb4563844541868b6c427720cf76d5aa.tar.bz2 volse-hubzilla-8fc0e41beb4563844541868b6c427720cf76d5aa.zip |
fix regression in notifications filter
Diffstat (limited to 'view/tpl')
-rw-r--r-- | view/tpl/notifications_widget.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/notifications_widget.tpl b/view/tpl/notifications_widget.tpl index f884ff1f6..9f7427a7d 100644 --- a/view/tpl/notifications_widget.tpl +++ b/view/tpl/notifications_widget.tpl @@ -546,7 +546,7 @@ } // Filter thread_top notifications if the filter is active - let filterThreadTop = document.getElementById('cn-' + notifyType + '-input'); + let filterThreadTop = document.getElementById('tt-' + notifyType + '-only'); if (filterThreadTop && filterThreadTop.classList.contains('active')) { let notifications = notify_menu.querySelectorAll('[data-thread_top="false"]'); notifications.forEach(notification => notification.classList.add('tt-filter-active')); |