From 222104e0515ca57f3f2e6e69c881a2e6585d17b1 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 13 Oct 2021 04:29:24 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Prevent=20mysterious=20bug=20on?= =?UTF-8?q?=20group=20deletion?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/group/GroupListBox.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/group/GroupListBox.tsx b/frontend/src/components/group/GroupListBox.tsx index 503f377..534b104 100644 --- a/frontend/src/components/group/GroupListBox.tsx +++ b/frontend/src/components/group/GroupListBox.tsx @@ -21,7 +21,7 @@ export function GroupListBox({viewSet}: GroupListBoxProps): JSX.Element { if(viewSet.resources.length === 0) { return This Sophon instance has no groups. } - return viewSet.resources?.map(res => ) + return viewSet.resources?.map(res => ) }, [viewSet], )