diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-16 14:18:11 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-01-16 14:18:11 +0900 |
| commit | 77e491f52c8ad1e2e8b2f956595d5fa98f38ad61 (patch) | |
| tree | 4b30886f8284347791e090b28dd633135aba4ea4 /packages/frontend/src/components/MkNote.vue | |
| parent | Update vite.config.ts (diff) | |
| download | sharkey-77e491f52c8ad1e2e8b2f956595d5fa98f38ad61.tar.gz sharkey-77e491f52c8ad1e2e8b2f956595d5fa98f38ad61.tar.bz2 sharkey-77e491f52c8ad1e2e8b2f956595d5fa98f38ad61.zip | |
refactor
Diffstat (limited to 'packages/frontend/src/components/MkNote.vue')
| -rw-r--r-- | packages/frontend/src/components/MkNote.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkNote.vue b/packages/frontend/src/components/MkNote.vue index 85575ca586..9b2501a2ed 100644 --- a/packages/frontend/src/components/MkNote.vue +++ b/packages/frontend/src/components/MkNote.vue @@ -12,7 +12,7 @@ <!--<div v-if="appearNote._prId_" class="tip"><i class="fas fa-bullhorn"></i> {{ i18n.ts.promotion }}<button class="_textButton hide" @click="readPromo()">{{ i18n.ts.hideThisNote }} <i class="ti ti-x"></i></button></div>--> <!--<div v-if="appearNote._featuredId_" class="tip"><i class="ti ti-bolt"></i> {{ i18n.ts.featured }}</div>--> <div v-if="isRenote" :class="$style.renote"> - <MkAvatar v-once :class="$style.renoteAvatar" :user="note.user"/> + <MkAvatar v-once :class="$style.renoteAvatar" :user="note.user" link preview/> <i class="ti ti-repeat" style="margin-right: 4px;"></i> <I18n :src="i18n.ts.renotedBy" tag="span" :class="$style.renoteText"> <template #user> @@ -35,7 +35,7 @@ </div> </div> <article :class="$style.article" @contextmenu.stop="onContextmenu"> - <MkAvatar v-once :class="$style.avatar" :user="appearNote.user"/> + <MkAvatar v-once :class="$style.avatar" :user="appearNote.user" link preview/> <div :class="$style.main"> <MkNoteHeader :class="$style.header" :note="appearNote" :mini="true"/> <MkInstanceTicker v-if="showTicker" :class="$style.ticker" :instance="appearNote.user.instance"/> |