;
const arr = id.split(".");
while (arr.length > 1) {
+ // eslint-disable-next-line @typescript-eslint/no-unnecessary-condition
+ obj[arr[0]] ??= {} as never;
obj = obj[arr[0]];
arr.splice(0, 1);
}
diff --git a/static/webui/index.html b/static/webui/index.html
index aab8f87b..63d4d936 100644
--- a/static/webui/index.html
+++ b/static/webui/index.html
@@ -870,7 +870,7 @@
-