diff options
| author | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-29 16:11:15 +0900 |
|---|---|---|
| committer | syuilo <4439005+syuilo@users.noreply.github.com> | 2025-03-29 16:11:15 +0900 |
| commit | 609a37742cb8fa2d7172aa633c8f78ca145fbdf6 (patch) | |
| tree | 9394308b94a19421812235bcf1f1bc7c1d692773 | |
| parent | lint fixes (diff) | |
| download | sharkey-609a37742cb8fa2d7172aa633c8f78ca145fbdf6.tar.gz sharkey-609a37742cb8fa2d7172aa633c8f78ca145fbdf6.tar.bz2 sharkey-609a37742cb8fa2d7172aa633c8f78ca145fbdf6.zip | |
clean up
| -rw-r--r-- | packages/frontend/src/components/MkPagination.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/components/MkPagination.vue b/packages/frontend/src/components/MkPagination.vue index c639b4dd18..9adc3d98da 100644 --- a/packages/frontend/src/components/MkPagination.vue +++ b/packages/frontend/src/components/MkPagination.vue @@ -15,7 +15,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkError v-else-if="error" @retry="init()"/> - <div v-else-if="empty" key="_empty_" class="empty"> + <div v-else-if="empty" key="_empty_"> <slot name="empty"> <div class="_fullinfo"> <img :src="infoImageUrl" draggable="false"/> @@ -29,14 +29,14 @@ SPDX-License-Identifier: AGPL-3.0-only <MkButton v-if="!moreFetching" v-appear="(enableInfiniteScroll && !props.disableAutoLoad) ? appearFetchMoreAhead : null" :class="$style.more" :wait="moreFetching" primary rounded @click="fetchMoreAhead"> {{ i18n.ts.loadMore }} </MkButton> - <MkLoading v-else class="loading"/> + <MkLoading v-else/> </div> <slot :items="Array.from(items.values())" :fetching="fetching || moreFetching"></slot> <div v-show="!pagination.reversed && more" key="_more_"> <MkButton v-if="!moreFetching" v-appear="(enableInfiniteScroll && !props.disableAutoLoad) ? appearFetchMore : null" :class="$style.more" :wait="moreFetching" primary rounded @click="fetchMore"> {{ i18n.ts.loadMore }} </MkButton> - <MkLoading v-else class="loading"/> + <MkLoading v-else/> </div> </div> </Transition> |