diff --git a/webui/src/components/Inspect.svelte b/webui/src/components/Inspect.svelte index eb76df5..d6f8c02 100644 --- a/webui/src/components/Inspect.svelte +++ b/webui/src/components/Inspect.svelte @@ -172,7 +172,7 @@ : filteredUntypedAttributes; $: filteredUntypedLinks = untypedLinks.filter( - (entry) => ![ATTR_IN].includes(entry.attribute) + (entry) => ![ATTR_IN, ATTR_OF].includes(entry.attribute) ); $: currentUntypedLinks = editable ? untypedLinks : filteredUntypedLinks; @@ -181,7 +181,7 @@ (editable ? $entity?.backlinks : $entity?.backlinks.filter( - (entry) => ![ATTR_IN].includes(entry.attribute) + (entry) => ![ATTR_IN, ATTR_OF].includes(entry.attribute) )) || []; $: tagged = $entity?.attr[`~${ATTR_IN}`] || [];