mirror of
https://github.com/ccmdi/obsidian-map-plus.git
synced 2026-07-22 06:43:14 +00:00
fix: allow cover string as shown property
This commit is contained in:
parent
105b762d7b
commit
a345796d3e
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue