fixing EnumComponent notification message format

This commit is contained in:
Mose Müller 2023-08-02 12:06:21 +02:00
parent 42bfa028e0
commit c980d35859

View File

@ -24,7 +24,7 @@ export const EnumComponent = React.memo((props: EnumComponentProps) => {
socket.emit('frontend_update', { socket.emit('frontend_update', {
name: name, name: name,
parent_path: parent_path, parent_path: parent_path,
value: { value: newValue } value: newValue
}); });
}; };