Added Pinning to Standard Entity

This commit is contained in:
2025-09-13 17:08:30 +02:00
parent 9fad0eafd0
commit eea7937225
3 changed files with 53 additions and 1 deletions

View File

@@ -16,6 +16,13 @@ const links = computed(() => {
target: "_blank",
pinned: true
}
}else if(pin.type === "standardEntity") {
return {
label: pin.label,
to: `/standardEntity/${pin.datatype}/show/${pin.id}`,
icon: pin.icon,
pinned: true
}
}
}),