made links in user bio always open in new tabs

This commit is contained in:
Henry Jameson 2018-12-04 11:38:00 +03:00
parent 480f617c09
commit 6d6d1102d9
2 changed files with 9 additions and 1 deletions
src/components/user_card_content

View file

@ -105,7 +105,7 @@
<span v-if="!hideUserStatsLocal">{{user.followers_count}}</span>
</div>
</div>
<p v-if="!hideBio && user.description_html" class="profile-bio" v-html="user.description_html"></p>
<p @click.prevent="linkClicked" v-if="!hideBio && user.description_html" class="profile-bio" v-html="user.description_html"></p>
<p v-else-if="!hideBio" class="profile-bio">{{ user.description }}</p>
</div>
</div>