From 89d76c3b981b58b259b37bd16124a8367bdb9f3c Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Thu, 2 May 2024 16:39:09 +0200 Subject: [PATCH] fix ui: fix notes loading --- .../shared/SessionsTabOverview/components/Notes/NoteTags.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/components/shared/SessionsTabOverview/components/Notes/NoteTags.tsx b/frontend/app/components/shared/SessionsTabOverview/components/Notes/NoteTags.tsx index 572139c36..2c1e1d36d 100644 --- a/frontend/app/components/shared/SessionsTabOverview/components/Notes/NoteTags.tsx +++ b/frontend/app/components/shared/SessionsTabOverview/components/Notes/NoteTags.tsx @@ -59,7 +59,7 @@ function NoteTags() { ), })), ]} - onChange={(value: iTag) => notesStore.toggleTag(value)} + onChange={(value: iTag) => notesStore.toggleTag(value === 'ALL' ? undefined : value)} />