fix: allow cover string as shown property

This commit is contained in:
ccmdi 2025-10-15 18:47:48 -04:00
parent 105b762d7b
commit a345796d3e
No known key found for this signature in database

View file

@ -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);