Improved property viewers

Slot fill data included in library viewer
Breadcrumbs and children in lib view
breadcrumbs and children work on tree tab
This commit is contained in:
Stefan Zermatten
2023-06-13 12:48:35 +02:00
parent c580970d6d
commit 957aabcb82
10 changed files with 197 additions and 114 deletions

View File

@@ -214,7 +214,7 @@ const PROPERTIES = Object.freeze({
export default PROPERTIES;
export function getPropertyName(type) {
return type && PROPERTIES[type] && PROPERTIES[type].name;
return (type && PROPERTIES[type] && PROPERTIES[type].name) || type;
}
export function getPropertyIcon(type) {