From f5dfafd85ad1398e275350175ee6d99089a1b2d5 Mon Sep 17 00:00:00 2001 From: "D. Berge" Date: Wed, 20 Aug 2025 12:03:53 +0200 Subject: [PATCH] Make event handler more specific --- lib/www/client/source/src/App.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/www/client/source/src/App.vue b/lib/www/client/source/src/App.vue index 2109b34..a47c2d0 100644 --- a/lib/www/client/source/src/App.vue +++ b/lib/www/client/source/src/App.vue @@ -85,7 +85,9 @@ export default { }, handleProject (context, {payload}) { - this.refreshProjects(); + if (payload?.table == "public") { + this.refreshProjects(); + } }, registerNotificationHandlers () {