From 639480678de3125e08732fddd3ee273d6c7c90d1 Mon Sep 17 00:00:00 2001 From: Eric NGUYEN Date: Tue, 18 Oct 2022 14:56:49 +0200 Subject: [PATCH] Fix hr in Context menu having the same key --- src/Components/Menu/Menu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Components/Menu/Menu.tsx b/src/Components/Menu/Menu.tsx index 841041e..a0fbc03 100644 --- a/src/Components/Menu/Menu.tsx +++ b/src/Components/Menu/Menu.tsx @@ -138,7 +138,7 @@ function AddClassSpecificActions( shortcut={action.shortcut} onClick={() => action.action(target)} />); }); - children.push(
); + children.push(
); }; return count; }