Compare commits

..

No commits in common. "8a9eb73b6b0ed52efed1d4577328efbe7c001099" and "9d0f1e292807b96118aa70b1a970b68349e96cc4" have entirely different histories.

2 changed files with 1 additions and 4 deletions

View File

@ -31,7 +31,7 @@ SPDX-License-Identifier: AGPL-3.0-only
</MkButton>
<MkLoading v-else class="loading"/>
</div>
<slot :items="prividingItems" :fetching="fetching || moreFetching" :denyMoveTransition="denyMoveTransition"></slot>
<slot :items="Array.from(items.values())" :fetching="fetching || moreFetching" :denyMoveTransition="denyMoveTransition"></slot>
<div v-show="!pagination.reversed && more" key="_more_" class="_margin">
<MkButton v-if="!moreFetching" v-appear="(enableInfiniteScroll && !props.disableAutoLoad) ? appearFetchMore : null" :class="$style.more" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }" primary rounded @click="fetchMore">
{{ i18n.ts.loadMore }}
@ -133,7 +133,6 @@ let scrollRemove = $ref<(() => void) | null>(null);
* 最新が0番目
*/
const items = ref<MisskeyEntityMap>(new Map());
const prividingItems = computed(() => Array.from(items.value.values()));
/**
* タブが非アクティブなどの場合に更新を貯めておく

View File

@ -66,8 +66,6 @@ export class NoteManager {
* Ref
* user, renote, replyを持たない
* nullは削除済みであることを表す
*
* 使
*/
private notesSource: Map<Note['id'], CachedNoteSource>;