diff options
| author | かっこかり <67428053+kakkokari-gtyih@users.noreply.github.com> | 2026-01-16 22:42:08 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-16 22:42:08 +0900 |
| commit | 389861f1da42e66fe52fe5d33ba4ade35aa16f23 (patch) | |
| tree | 4ceb4825d8db5b1525774e8149319701ce612765 /packages/frontend/src/components/MkNotification.vue | |
| parent | enhance(dev): メモリ使用量比較のActionsでGCしてから取得する (diff) | |
| download | misskey-389861f1da42e66fe52fe5d33ba4ade35aa16f23.tar.gz misskey-389861f1da42e66fe52fe5d33ba4ade35aa16f23.tar.bz2 misskey-389861f1da42e66fe52fe5d33ba4ade35aa16f23.zip | |
refactor(frontend): fix invalid self-closing tags (#17103)
* fix(frontend): fix invalid self-closing tags
* apply eslint rules
* fix
* fix
Diffstat (limited to 'packages/frontend/src/components/MkNotification.vue')
| -rw-r--r-- | packages/frontend/src/components/MkNotification.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkNotification.vue b/packages/frontend/src/components/MkNotification.vue index a22fb7db01..30494d5362 100644 --- a/packages/frontend/src/components/MkNotification.vue +++ b/packages/frontend/src/components/MkNotification.vue @@ -143,8 +143,8 @@ SPDX-License-Identifier: AGPL-3.0-only <template v-else-if="notification.type === 'receiveFollowRequest'"> <span :class="$style.text" style="opacity: 0.6;">{{ i18n.ts.receiveFollowRequest }}</span> <div v-if="full && !followRequestDone" :class="$style.followRequestCommands"> - <MkButton :class="$style.followRequestCommandButton" rounded primary @click="acceptFollowRequest()"><i class="ti ti-check"/> {{ i18n.ts.accept }}</MkButton> - <MkButton :class="$style.followRequestCommandButton" rounded danger @click="rejectFollowRequest()"><i class="ti ti-x"/> {{ i18n.ts.reject }}</MkButton> + <MkButton :class="$style.followRequestCommandButton" rounded primary @click="acceptFollowRequest()"><i class="ti ti-check"></i> {{ i18n.ts.accept }}</MkButton> + <MkButton :class="$style.followRequestCommandButton" rounded danger @click="rejectFollowRequest()"><i class="ti ti-x"></i> {{ i18n.ts.reject }}</MkButton> </div> </template> <span v-else-if="notification.type === 'test'" :class="$style.text">{{ i18n.ts._notification.notificationWillBeDisplayedLikeThis }}</span> |