Add chevrons to parent path

This commit is contained in:
andrewwallacespeckle
2025-09-11 17:45:42 +01:00
parent b125775ec1
commit 7af367660e
@@ -139,7 +139,10 @@ const propertySelectOptions = computed((): PropertySelectOption[] => {
const lastDotIndex = filter.key.lastIndexOf('.')
const propertyName =
lastDotIndex === -1 ? filter.key : filter.key.slice(lastDotIndex + 1)
const parentPath = lastDotIndex === -1 ? '' : filter.key.slice(0, lastDotIndex)
const parentPath =
lastDotIndex === -1
? ''
: filter.key.slice(0, lastDotIndex).replace(/\./g, ' > ')
return {
value: filter.key,