From 077a8e8e455a7fc4e326a6e5585ca63013d05e2f Mon Sep 17 00:00:00 2001 From: Dimitrie Stefanescu Date: Tue, 15 Oct 2024 11:55:00 +0100 Subject: [PATCH] fix: removes logging, adds comments --- .../frontend/src/main/components/viewer/ViewerFilters.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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')