fix(fe): allow clicking of non-gradient results

This commit is contained in:
andrewwallacespeckle
2025-09-16 13:16:47 +01:00
parent f6e64faae2
commit 579e8d9d90
@@ -80,12 +80,7 @@ const isIsolated = computed(() => {
const isolatedIds = filters.isolatedObjectIds.value
if (!isolatedIds?.length) return false
if (
props.functionId &&
metadataGradientIsSet.value &&
filters.propertyFilters.value.some((f) => f.filter?.key === props.functionId)
)
return false
if (hasMetadataGradient.value && metadataGradientIsSet.value) return false
const ids = resultObjectIds.value
return containsAll(ids, isolatedIds)