Skip to content

Commit

Permalink
local store links take you to a page on the site so don't use another…
Browse files Browse the repository at this point in the history
… tab for that
  • Loading branch information
boutell committed May 15, 2022
1 parent 79fb41c commit 031f99a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Explorer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
</p>
<h3 v-if="localStoreLinks.length || onlineStoreLinks.length">Available at these stores:</h3>
<h4 v-if="localStoreLinks.length">Local Nurseries</h4>
<p class="store-links"><a v-for="storeLink in localStoreLinks" :key="storeLink.url" target="_blank" :href="storeLink.url" class="store-link">{{ storeLink.label }}</a></p>
<p class="store-links"><a v-for="storeLink in localStoreLinks" :key="storeLink.url" :href="storeLink.url" class="store-link">{{ storeLink.label }}</a></p>
<h4 v-if="onlineStoreLinks.length">Online Orders</h4>
<p class="store-links"><a v-for="storeLink in onlineStoreLinks" :key="storeLink.url" target="_blank" :href="storeLink.url" class="store-link">{{ storeLink.label }}</a></p>
<h3 v-if="selected.Articles.length">Mentioned in these articles:</h3>
Expand Down

0 comments on commit 031f99a

Please sign in to comment.