diff --git a/desktop/plugins/public/ui-debugger/components/Tree.tsx b/desktop/plugins/public/ui-debugger/components/Tree.tsx
index a84496ab8..e86274c7d 100644
--- a/desktop/plugins/public/ui-debugger/components/Tree.tsx
+++ b/desktop/plugins/public/ui-debugger/components/Tree.tsx
@@ -394,6 +394,8 @@ function nodeIcon(node: UINode) {
return ;
} else if (node.tags.includes('BloksBoundTree')) {
return ;
+ } else if (node.tags.includes('BloksDerived')) {
+ return ;
}
}
diff --git a/desktop/plugins/public/ui-debugger/index.tsx b/desktop/plugins/public/ui-debugger/index.tsx
index 8c348f19c..b97c00e2a 100644
--- a/desktop/plugins/public/ui-debugger/index.tsx
+++ b/desktop/plugins/public/ui-debugger/index.tsx
@@ -338,7 +338,7 @@ type UIActions = {
onSelectNode: (node?: Id) => void;
onExpandNode: (node: Id) => void;
onCollapseNode: (node: Id) => void;
- setVisualiserWidth: (width: Id) => void;
+ setVisualiserWidth: (width: number) => void;
};
function uiActions(uiState: UIState, nodes: Atom