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/MkPagingButtons.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/MkPagingButtons.vue')
| -rw-r--r-- | packages/frontend/src/components/MkPagingButtons.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkPagingButtons.vue b/packages/frontend/src/components/MkPagingButtons.vue index fe59efd83a..10f432e50d 100644 --- a/packages/frontend/src/components/MkPagingButtons.vue +++ b/packages/frontend/src/components/MkPagingButtons.vue @@ -10,7 +10,7 @@ SPDX-License-Identifier: AGPL-3.0-only <div :class="$style.buttons"> <div v-if="prevDotVisible" :class="$style.headTailButtons"> <MkButton @click="onToHeadButtonClicked">{{ min }}</MkButton> - <span class="ti ti-dots"/> + <span class="ti ti-dots"></span> </div> <MkButton @@ -22,7 +22,7 @@ SPDX-License-Identifier: AGPL-3.0-only </MkButton> <div v-if="nextDotVisible" :class="$style.headTailButtons"> - <span class="ti ti-dots"/> + <span class="ti ti-dots"></span> <MkButton @click="onToTailButtonClicked">{{ max }}</MkButton> </div> </div> |