Skip to content

Commit 0129f32

Browse files
author
An Phan
committed
Make Uglify happy by removing backticks
1 parent 9fbde8e commit 0129f32

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/site/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
v-model="q"
1616
id="seachField"
1717
autofocus="autofocus">
18-
<a :href="`#${q}`"
18+
<a :href="'#' + q"
1919
v-show="q.trim()"
2020
title="Link to this search"
2121
class="link">

app/site/src/components/Explore.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<h1 class="thin">Explore</h1>
44
<ul>
55
<li v-for="tag in coolStuff">
6-
<a :href="`#${tag}`"
6+
<a :href="'#' + tag"
77
@click="filterByTag(tag)">{{ tag }}</a>
88
</li>
99
</ul>

app/site/src/components/Item.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<footer class="thin" v-if="item.tags">
1313
<ul>
1414
<li v-for="tag in item.tags">
15-
<a :href="`#${tag}`" @click="filterByTag(tag)">{{ tag }}</a>
15+
<a :href="'#' + tag" @click="filterByTag(tag)">{{ tag }}</a>
1616
</li>
1717
</ul>
1818
</footer>

0 commit comments

Comments
 (0)