Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
fix(posts): feedname for account feed, make prop in TimelinePaginator…
Browse files Browse the repository at this point in the history
… optional
  • Loading branch information
jpezninjo committed Nov 7, 2023
1 parent e0b5ea7 commit 4f190f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/timeline/TimelinePaginator.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const { paginator, stream, account, buffer = 10, endMessage = true } = definePro
preprocess?: (items: mastodon.v1.Status[]) => mastodon.v1.Status[]
buffer?: number
endMessage?: boolean | string
feedName: string
feedName?: string
}>()
const commonPaginator = ref(null)
Expand Down
2 changes: 1 addition & 1 deletion pages/[[server]]/@[account]/index/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ if (account) {
<template>
<div>
<AccountTabs />
<TimelinePaginator :paginator="paginator" :preprocess="reorderAndFilter" context="account" :account="account" />
<TimelinePaginator :paginator="paginator" :preprocess="reorderAndFilter" context="account" :account="account" feed-name="account.feed" />
</div>
</template>

0 comments on commit 4f190f3

Please sign in to comment.