Skip to content

Commit

Permalink
Fix: note-header - change bot symbol
Browse files Browse the repository at this point in the history
  • Loading branch information
fs5m8 committed Nov 12, 2022
1 parent 1fcfcc8 commit e75deda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/app/common/views/components/note-header.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</router-link>
<span class="is-premium" v-if="note.user.isPremium" :title="$t('@.premium-user')"><fa icon="crown"/></span>
<span class="is-verified" v-if="note.user.isVerified" :title="$t('@.verified-user')"><img svg-inline src="../../../../assets/horseshoe.svg" class="horseshoe"/></span>
<span class="is-bot" v-if="note.user.isBot" :title="$t('@.bot-user')"><fa icon="cog"/></span>
<span class="is-bot" v-if="note.user.isBot" :title="$t('@.bot-user')"><fa icon="robot"/></span>
<span class="username"><mk-acct :user="note.user"/></span>
<div class="info">
<span class="app" v-if="note.app && !mini && $store.state.settings.showVia">via <b>{{ note.app.name }}</b></span>
Expand Down

0 comments on commit e75deda

Please sign in to comment.