1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #5076 from grhallenbeck/dev-react-display-settings

feat: (preferences) migrate user display settings to react
This commit is contained in:
Bill Thornton 2024-03-25 03:56:45 -04:00 committed by GitHub
commit 4a36f7571b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
18 changed files with 1007 additions and 23 deletions

View file

@ -1,5 +1,6 @@
interface Theme {
export interface Theme {
name: string
default?: boolean;
id: string
color: string
}