diff options
| author | 果物リン <nassii74@gmail.com> | 2025-11-07 11:27:08 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-07 11:27:08 +0900 |
| commit | 0a67d6f1a045c339dcdc0bb632fe359f16784a03 (patch) | |
| tree | 58240e38b3cce1e4db32a975cd06033c54783818 /packages/frontend/src/pages/note.vue | |
| parent | enhance(frontend): 投稿フォームのヒントを追加 (#16712) (diff) | |
| download | misskey-0a67d6f1a045c339dcdc0bb632fe359f16784a03.tar.gz misskey-0a67d6f1a045c339dcdc0bb632fe359f16784a03.tar.bz2 misskey-0a67d6f1a045c339dcdc0bb632fe359f16784a03.zip | |
fix(frontend): 一部のページでもっと見るが自動で行われないバグの修正 (#16754)
* 一部のページでもっと見るが自動で行われないバグの修正
* fix(frontend): MkPagination で UI アニメーションオフ時に自動ロードが動作しない問題を修正
Transition コンポーネントの mode="out-in" が、アニメーション無効時でも
適用されており、IntersectionObserver の検出に干渉していた問題を修正。
アニメーション有効時のみ mode="out-in" を適用するように変更。
Co-authored-by: 果物リン <fruitriin@users.noreply.github.com>
* enhance: ユーザーの設定値にかかわらず無限スクロールをオフにできるオプションを追加
* Update Changelog
* MkNotesTimeline.vueにforceDisableInfiniteScrollを追加、 note.vueの前方向の読み込みでこれを有効
* fix lint
* refactor
---------
Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com>
Co-authored-by: 果物リン <fruitriin@users.noreply.github.com>
Co-authored-by: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com>
Diffstat (limited to 'packages/frontend/src/pages/note.vue')
| -rw-r--r-- | packages/frontend/src/pages/note.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/pages/note.vue b/packages/frontend/src/pages/note.vue index c93ec4272a..2bbd7b2511 100644 --- a/packages/frontend/src/pages/note.vue +++ b/packages/frontend/src/pages/note.vue @@ -9,7 +9,7 @@ SPDX-License-Identifier: AGPL-3.0-only <Transition :name="prefer.s.animation ? 'fade' : ''" mode="out-in"> <div v-if="note"> <div v-if="showNext" class="_margin"> - <MkNotesTimeline direction="up" :withControl="false" :pullToRefresh="false" class="" :paginator="showNext === 'channel' ? nextChannelPaginator : nextUserPaginator" :noGap="true"/> + <MkNotesTimeline direction="up" :withControl="false" :pullToRefresh="false" class="" :paginator="showNext === 'channel' ? nextChannelPaginator : nextUserPaginator" :noGap="true" :forceDisableInfiniteScroll="true" /> </div> <div class="_margin"> |