From 7f0c19c61cd429f60e81fd92b2b3e7955130f09e Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Tue, 3 Jun 2025 14:56:31 +0200 Subject: [PATCH] UI - Also uncheck 'check all' checkbox for group operations in realtime mode --- changedetectionio/static/js/realtime.js | 1 + 1 file changed, 1 insertion(+) diff --git a/changedetectionio/static/js/realtime.js b/changedetectionio/static/js/realtime.js index 28d98fe4..e9ab37ff 100644 --- a/changedetectionio/static/js/realtime.js +++ b/changedetectionio/static/js/realtime.js @@ -33,6 +33,7 @@ $(document).ready(function () { extra_data: $('#op_extradata').val() // Set by the alert() handler }); $('input[name="uuids"]:checked').prop('checked', false); + $('#check-all:checked').prop('checked', false); return false; });