From 8bd84a0ec431cf0c520b578d60504df5a4794d16 Mon Sep 17 00:00:00 2001 From: anatawa12 Date: Sat, 9 Aug 2025 10:43:07 +0900 Subject: fix: カラムの名前が正しくリスト/チャンネルの名前にならない問題 (#15987) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix: カラムの名前が正しくリスト/チャンネルの名前にならない問題 * changelog Fix: カラムの名前が正しくリスト/チャンネルの名前にならない問題を修正 * reduce requests to retrieve timeline name --- packages/frontend/src/deck.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'packages/frontend/src/deck.ts') diff --git a/packages/frontend/src/deck.ts b/packages/frontend/src/deck.ts index 73a3cecd3b..208adae8fe 100644 --- a/packages/frontend/src/deck.ts +++ b/packages/frontend/src/deck.ts @@ -62,6 +62,8 @@ export type Column = { withSensitive?: boolean; onlyFiles?: boolean; soundSetting?: SoundStore; + // The cache for the name of the antenna, channel, list, or role + timelineNameCache?: string; }; const _currentProfile = prefer.s['deck.profiles'].find(p => p.name === prefer.s['deck.profile']); -- cgit v1.2.3-freya