diff options
| author | anatawa12 <anatawa12@icloud.com> | 2025-08-09 10:43:07 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-09 10:43:07 +0900 |
| commit | 8bd84a0ec431cf0c520b578d60504df5a4794d16 (patch) | |
| tree | cefc9f148c8d0e8b4d5bf8b5c2f063cce070b2e1 /packages/frontend/src/deck.ts | |
| parent | fix(deps): update [root] update dependencies (#16349) (diff) | |
| download | misskey-8bd84a0ec431cf0c520b578d60504df5a4794d16.tar.gz misskey-8bd84a0ec431cf0c520b578d60504df5a4794d16.tar.bz2 misskey-8bd84a0ec431cf0c520b578d60504df5a4794d16.zip | |
fix: カラムの名前が正しくリスト/チャンネルの名前にならない問題 (#15987)
* fix: カラムの名前が正しくリスト/チャンネルの名前にならない問題
* changelog Fix: カラムの名前が正しくリスト/チャンネルの名前にならない問題を修正
* reduce requests to retrieve timeline name
Diffstat (limited to 'packages/frontend/src/deck.ts')
| -rw-r--r-- | packages/frontend/src/deck.ts | 2 |
1 files changed, 2 insertions, 0 deletions
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']); |