summaryrefslogtreecommitdiff
path: root/src/client/components/global
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2021-02-14 22:26:07 +0900
committerGitHub <noreply@github.com>2021-02-14 22:26:07 +0900
commit1eda7c85652c6e4295626ab94bc4084aaa141872 (patch)
treeed69b506905d0a98db6b148563dffffb29dfa28a /src/client/components/global
parentServiceWorker: onfetchで何もしないように (#7195) (diff)
downloadmisskey-1eda7c85652c6e4295626ab94bc4084aaa141872.tar.gz
misskey-1eda7c85652c6e4295626ab94bc4084aaa141872.tar.bz2
misskey-1eda7c85652c6e4295626ab94bc4084aaa141872.zip
Chat UI (#7197)
* wip * wip * wip * wip * refactor * Update note.vue * wip
Diffstat (limited to 'src/client/components/global')
-rw-r--r--src/client/components/global/avatar.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/components/global/avatar.vue b/src/client/components/global/avatar.vue
index 9f8b0eeca1..d2f25fa41e 100644
--- a/src/client/components/global/avatar.vue
+++ b/src/client/components/global/avatar.vue
@@ -1,8 +1,8 @@
<template>
-<span class="eiwwqkts" :class="{ cat }" :title="acct(user)" v-if="disableLink" v-user-preview="disablePreview ? undefined : user.id" @click="onClick">
+<span class="eiwwqkts _noSelect" :class="{ cat }" :title="acct(user)" v-if="disableLink" v-user-preview="disablePreview ? undefined : user.id" @click="onClick">
<img class="inner" :src="url" decoding="async"/>
</span>
-<MkA class="eiwwqkts" :class="{ cat }" :to="userPage(user)" :title="acct(user)" :target="target" v-else v-user-preview="disablePreview ? undefined : user.id">
+<MkA class="eiwwqkts _noSelect" :class="{ cat }" :to="userPage(user)" :title="acct(user)" :target="target" v-else v-user-preview="disablePreview ? undefined : user.id">
<img class="inner" :src="url" decoding="async"/>
</MkA>
</template>