Align supplier map with product filter list
Some checks failed
Build Docker Image / build (push) Has been cancelled

This commit is contained in:
Ruslan Bakiev
2026-02-07 13:00:53 +07:00
parent 38081a5cb0
commit 6b9935e8e8

View File

@@ -500,7 +500,7 @@ const clusterSupplierUuid = computed(() => supplierId.value || undefined)
// When a product filter is active and we're viewing hubs, use the same list data on the map // When a product filter is active and we're viewing hubs, use the same list data on the map
// to avoid mismatch between graph-filtered list and clustered map results. // to avoid mismatch between graph-filtered list and clustered map results.
const useServerClustering = computed(() => { const useServerClustering = computed(() => {
if (productId.value && mapViewMode.value === 'hubs') return false if (productId.value && (mapViewMode.value === 'hubs' || mapViewMode.value === 'suppliers')) return false
return true return true
}) })