Visible
diff --git a/app/web/src/nova/ed/panel/side/prop-master/tree-item.tsx b/app/web/src/nova/ed/panel/side/prop-master/tree-item.tsx
index 1a23b112..32efd230 100644
--- a/app/web/src/nova/ed/panel/side/prop-master/tree-item.tsx
+++ b/app/web/src/nova/ed/panel/side/prop-master/tree-item.tsx
@@ -29,9 +29,12 @@ export const EdPropCompTreeItem: FC<{
if (node.data?.prop.meta?.type === "option") type = "OPT";
else if (node.data?.prop.meta?.type === "content-element") type = "JSX";
+ const plabel = node.data?.prop.label;
const label = (
-
{node.text}
+
+ {node.text} {plabel && {plabel}}
+
{type}
diff --git a/app/web/src/utils/types/meta-fn.ts b/app/web/src/utils/types/meta-fn.ts
index 114ad43f..1e7d4a57 100644
--- a/app/web/src/utils/types/meta-fn.ts
+++ b/app/web/src/utils/types/meta-fn.ts
@@ -29,6 +29,7 @@ export type FNCompDef = {
idx: number;
typings: string;
type: string;
+ label?: string;
value: any;
valueBuilt: any;
gen?: string;