Update Filters.vue (#3172)
This commit is contained in:
committed by
GitHub
parent
7fbda629b7
commit
3d048d67d1
@@ -122,6 +122,10 @@ const props = defineProps<{
|
||||
filters: PropertyInfo[]
|
||||
}>()
|
||||
|
||||
const isRevitProperty = (key: string): boolean => {
|
||||
return revitPropertyRegex.test(key)
|
||||
}
|
||||
|
||||
const relevantFilters = computed(() => {
|
||||
return props.filters.filter((f) => {
|
||||
if (
|
||||
@@ -238,10 +242,6 @@ const refreshColorsIfSetOrActiveFilterIsNumeric = () => {
|
||||
applyPropertyFilter()
|
||||
}
|
||||
|
||||
const isRevitProperty = (key: string): boolean => {
|
||||
return revitPropertyRegex.test(key)
|
||||
}
|
||||
|
||||
const getPropertyName = (key: string): string => {
|
||||
if (!key) return 'Loading'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user