diff --git a/components/admin/Collections.vue b/components/admin/Collections.vue index 178f6564..30d0e49e 100644 --- a/components/admin/Collections.vue +++ b/components/admin/Collections.vue @@ -152,7 +152,9 @@ export default { }, 100), collectionFilters (collection) { return collection.filters.map(f => { - return '(' + f.tags?.join(', ') + f.places?.map(p => p.name).join(', ') + ')' + const tags = f.tags?.join(', ') + const places = f.places?.map(p => p.name).join(', ') + return '(' + (tags && places ? tags + ' - ' + places : tags + places) + ')' }).join(' - ') }, async addFilter () {