Make event handler more specific

This commit is contained in:
D. Berge
2025-08-20 12:03:53 +02:00
parent 674d818fee
commit 196e772004

View File

@@ -85,7 +85,9 @@ export default {
}, },
handleProject (context, {payload}) { handleProject (context, {payload}) {
this.refreshProjects(); if (payload?.table == "public") {
this.refreshProjects();
}
}, },
registerNotificationHandlers () { registerNotificationHandlers () {