1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00

Fixed: Series posters flickering when width changes repeatedly

Closes #6311
This commit is contained in:
Mark McDowall
2024-01-12 23:17:29 -08:00
committed by Mark McDowall
parent 91f33c670e
commit 53cf530893
3 changed files with 18 additions and 3 deletions
+9
View File
@@ -44,7 +44,16 @@ export interface CustomFilter {
filers: PropertyFilter[];
}
export interface AppSectionState {
dimensions: {
isSmallScreen: boolean;
width: number;
height: number;
};
}
interface AppState {
app: AppSectionState;
calendar: CalendarAppState;
commands: CommandAppState;
episodeFiles: EpisodeFilesAppState;