diff --git a/packages/frontend/src/main/components/viewer/ViewerFilters.vue b/packages/frontend/src/main/components/viewer/ViewerFilters.vue index 951e02fd3..a4929b328 100644 --- a/packages/frontend/src/main/components/viewer/ViewerFilters.vue +++ b/packages/frontend/src/main/components/viewer/ViewerFilters.vue @@ -201,10 +201,10 @@ export default { filter.data = rawFilter const key = rawFilter.key // Handle revit params (a wee bit of FML moment) + // Note: parameters = dui2, properties = dui3 + // TODOs: some not needed props still come through (e.g., material quantities) if (key.startsWith('parameters.') || key.startsWith('properties.')) { if (key.endsWith('.value')) { - console.log('pushing', key) - console.log('pushing', key) // filter.name = this.props[key.replace('.value', '.name')].allValues[0] const nameProp = this.propertyFilters.find( (f) => f.key === key.replace('.value', '.name')