From 478c9b64a94261e9b7e68de571bf85144636509e Mon Sep 17 00:00:00 2001
From: Andrew Dolgov <noreply@fakecake.org>
Date: Tue, 25 Jan 2022 22:39:18 +0300
Subject: [PATCH] make sure notification is closed when saving/creating filter

---
 js/CommonFilters.js | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/js/CommonFilters.js b/js/CommonFilters.js
index 434ee72c7..1a0ce1606 100644
--- a/js/CommonFilters.js
+++ b/js/CommonFilters.js
@@ -398,6 +398,8 @@ const	Filters = {
 					xhr.post("backend.php", this.attr('value'), () => {
 						dialog.hide();
 
+						Notify.close();
+
 						const tree = dijit.byId("filterTree");
 						if (tree) tree.reload();
 					});
-- 
GitLab