[fix] move wrong v-if
Browse files
static/src/components/PagePredictionMap.vue
CHANGED
@@ -5,9 +5,9 @@
|
|
5 |
|
6 |
<div class="lg:border-r lg:col-span-3">
|
7 |
<div id="id-map-cont" class="">
|
8 |
-
v-if="currentPathnameRef.startsWith(pathnameCheckRef)"
|
9 |
<p
|
10 |
class="block lg:hidden"
|
|
|
11 |
>Trouble on page scrolling? Use the <a :href="embeddedSpaceRef">embedded space</a>.</p>
|
12 |
<p class="hidden lg:block">{{ description }}</p>
|
13 |
<div class="w-full md:pt-1 md:pb-1 lg:hidden portrait:xl:hidden">
|
|
|
5 |
|
6 |
<div class="lg:border-r lg:col-span-3">
|
7 |
<div id="id-map-cont" class="">
|
|
|
8 |
<p
|
9 |
class="block lg:hidden"
|
10 |
+
v-if="currentPathnameRef.startsWith(pathnameCheckRef)"
|
11 |
>Trouble on page scrolling? Use the <a :href="embeddedSpaceRef">embedded space</a>.</p>
|
12 |
<p class="hidden lg:block">{{ description }}</p>
|
13 |
<div class="w-full md:pt-1 md:pb-1 lg:hidden portrait:xl:hidden">
|