1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-04 04:56:12 +02:00

fix: カラムの名前が正しくリスト/チャンネルの名前にならない問題 (#15987)

* fix: カラムの名前が正しくリスト/チャンネルの名前にならない問題

* changelog Fix: カラムの名前が正しくリスト/チャンネルの名前にならない問題を修正

* reduce requests to retrieve timeline name
This commit is contained in:
anatawa12
2025-08-09 10:43:07 +09:00
committed by GitHub
parent 9539995458
commit 8bd84a0ec4
6 changed files with 21 additions and 32 deletions

View File

@@ -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']);