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 93f2029 commit 4230037Copy full SHA for 4230037
1 file changed
src/components/TheSidebar.vue
@@ -142,6 +142,10 @@ const handleSelectPin = (pin) => {
142
<i class="fas fa-location-dot me-1 small flex-shrink-0" />
143
<span class="text-truncate">{{ pin.distanceText }} away</span>
144
</div>
145
+ <div v-else-if="pin.latitude && pin.longitude">
146
+ <i class="fas fa-location-pin-lock me-1 small flex-shrink-0" />
147
+ <span class="text-truncate">Unknown distance</span>
148
+ </div>
149
<div v-else>
150
<i class="fas fa-location-pin-lock me-1 small flex-shrink-0" />
151
<span class="text-truncate">No location</span>
0 commit comments