From a345796d3ecf3b84ea88084083fb33ccde7d4005 Mon Sep 17 00:00:00 2001 From: ccmdi Date: Wed, 15 Oct 2025 18:47:48 -0400 Subject: [PATCH] fix: allow cover string as shown property --- src/views/map-bases-view.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/map-bases-view.ts b/src/views/map-bases-view.ts index feb43d0..8b2c3ba 100644 --- a/src/views/map-bases-view.ts +++ b/src/views/map-bases-view.ts @@ -331,7 +331,7 @@ export class MapBasesView extends BasesView { const properties: Array<{ name: string; value: string }> = []; if (this.data.properties) { for (const prop of this.data.properties.slice(0, 20)) { - if (prop === this.coordinatesProp || prop === this.coverProp) continue; + if (prop === this.coordinatesProp) continue; try { const value = entry.getValue(prop);