From eeed67ecac8fca3d542c4d68c1eb13ca113c5053 Mon Sep 17 00:00:00 2001 From: おさむのひと <46447427+samunohito@users.noreply.github.com> Date: Thu, 14 Dec 2023 07:18:29 +0900 Subject: (fix) デフォルト表示時のヘッダにあるチャンネルボタンが反応しない現象の修正 (#12648) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * dividerの仕変に追従 * fix type --- packages/frontend/src/pages/timeline.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'packages') diff --git a/packages/frontend/src/pages/timeline.vue b/packages/frontend/src/pages/timeline.vue index f3213ad273..59c45a57ff 100644 --- a/packages/frontend/src/pages/timeline.vue +++ b/packages/frontend/src/pages/timeline.vue @@ -125,14 +125,14 @@ async function chooseChannel(ev: MouseEvent): Promise { const channels = await os.api('channels/my-favorites', { limit: 100, }); - const items = [ + const items: MenuItem[] = [ ...channels.map(channel => ({ type: 'link' as const, text: channel.name, indicate: channel.hasUnreadNote, to: `/channels/${channel.id}`, })), - (channels.length === 0 ? undefined : null), + (channels.length === 0 ? undefined : { type: 'divider' }), { type: 'link' as const, icon: 'ti ti-plus', -- cgit v1.2.3-freya