Skip to content

Commit

Permalink
[F] Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
LS-KR committed Nov 17, 2024
1 parent 5dab1b2 commit cd8fbce
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,10 @@
<div class="back"/>
<a :href="`/profile/${p.id}`" @click.exact.prevent.stop="() => false">
<transition name="fade" @after-leave="() => switchPage(p)">
<div class="front">
<div class="front" v-if="clicked !== p.name">
<canvas v-bind:id="p.id + '-canvas'" class="blur clickable"></canvas>
<img :src="profileUrl(p)" draggable="false" alt="" class="profile-image clickable"
@click.exact="() => { if (!clicked) { clicked = p.name; } return false }"
v-if="clicked !== p.name"
v-on:load="isLoading = false">
</div>
</transition>
Expand Down

0 comments on commit cd8fbce

Please sign in to comment.