We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6f8a32 commit 91b18b3Copy full SHA for 91b18b3
2 files changed
public/manifest.json
@@ -77,8 +77,8 @@
77
{
78
"action": "/",
79
"accept": {
80
- "application/vnd.geo+json": [".geojson",".geo.json"],
81
- "application/json": [".geojson", ".geo.json"]
+ "application/vnd.geo+json": [".geojson",".json"],
+ "application/json": [".geojson"]
82
}
83
},
84
src/components/game/DetailsMap.vue
@@ -1,7 +1,11 @@
1
<template>
2
<div
3
class="details-map_container"
4
- v-if="properties && typeof properties === 'object'"
+ v-if="
5
+ properties &&
6
+ typeof properties === 'object' &&
7
+ (properties.title || properties.description)
8
+ "
9
>
10
<h2>
11
{{ properties.title }}
0 commit comments