fix scene load and add first version UpdateValueDialog

This commit is contained in:
Adrian Zuercher
2025-06-27 11:02:27 +02:00
parent 707d88fb7f
commit 38610471f3
14 changed files with 592 additions and 388 deletions

View File

@@ -1,8 +1,8 @@
export type Publish = {
event: string;
uuid?: string;
path?: string;
type?: string;
value?: undefined;
uuid: string;
path: string;
type: string;
value: undefined;
};
export type Pubs = Publish[];