Compare commits

...

1 Commits

Author SHA1 Message Date
Björn 72e156caa5 fix: pre-selected objects 2025-08-14 14:16:39 +02:00
+4 -2
View File
@@ -518,8 +518,10 @@ const refreshLayerMappings = async () => {
}
// === LIFECYCLE ===
onMounted(() => {
loadData()
onMounted(async () => {
await selectionStore.refreshSelectionFromHostApp()
await loadData()
// Listen for mappings changes
$revitMapperBinding?.on('mappingsChanged', (newMappings: CategoryMapping[]) => {