fix(client): MkHeader及びデッキのカラムでチャンネル一覧を選択したとき、最大5個までしか表示されない

Fix #9904
This commit is contained in:
syuilo 2023-02-17 14:59:11 +09:00
parent 14cff15c89
commit d4eb1def61
2 changed files with 7 additions and 3 deletions

View File

@ -23,6 +23,7 @@
<script lang="ts" setup>
import { defineAsyncComponent, computed, watch, provide } from 'vue';
import type { Tab } from '@/components/global/MkPageHeader.tabs.vue';
import XTimeline from '@/components/MkTimeline.vue';
import MkPostForm from '@/components/MkPostForm.vue';
import { scroll } from '@/scripts/scroll';
@ -32,7 +33,6 @@ import { i18n } from '@/i18n';
import { instance } from '@/instance';
import { $i } from '@/account';
import { definePageMetadata } from '@/scripts/page-metadata';
import type { Tab } from '@/components/global/MkPageHeader.tabs.vue';
provide('shouldOmitHeaderTitle', true);
@ -83,7 +83,9 @@ async function chooseAntenna(ev: MouseEvent): Promise<void> {
}
async function chooseChannel(ev: MouseEvent): Promise<void> {
const channels = await os.api('channels/followed');
const channels = await os.api('channels/followed', {
limit: 100,
});
const items = channels.map(channel => ({
type: 'link' as const,
text: channel.name,

View File

@ -39,7 +39,9 @@ if (props.column.channelId == null) {
}
async function setChannel() {
const channels = await os.api('channels/followed');
const channels = await os.api('channels/followed', {
limit: 100,
});
const { canceled, result: channel } = await os.select({
title: i18n.ts.selectChannel,
items: channels.map(x => ({