From c980d35859fd2532a602d6dd2856a08f69f8f71d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mose=20M=C3=BCller?= Date: Wed, 2 Aug 2023 12:06:21 +0200 Subject: [PATCH] fixing EnumComponent notification message format --- frontend/src/components/EnumComponent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/EnumComponent.tsx b/frontend/src/components/EnumComponent.tsx index c39ed41..246e64f 100644 --- a/frontend/src/components/EnumComponent.tsx +++ b/frontend/src/components/EnumComponent.tsx @@ -24,7 +24,7 @@ export const EnumComponent = React.memo((props: EnumComponentProps) => { socket.emit('frontend_update', { name: name, parent_path: parent_path, - value: { value: newValue } + value: newValue }); };