Use friendly name in new component panel if available
This commit is contained in:
parent
a7c424550c
commit
233d5e190c
|
@ -58,7 +58,10 @@
|
||||||
enrichedStructure.push({
|
enrichedStructure.push({
|
||||||
name: "Custom components",
|
name: "Custom components",
|
||||||
isCategory: true,
|
isCategory: true,
|
||||||
children: customComponents.map(x => definitions[x]),
|
children: customComponents.map(x => ({
|
||||||
|
...definitions[x],
|
||||||
|
name: definitions[x].friendlyName || definitions[x].name,
|
||||||
|
})),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue