New: Album Studio is now part of artists list

(cherry picked from commit bdcfef80d627e777d7932c54cda04cbe7c656ffc)

Load albums for album details on mouse hover
This commit is contained in:
Mark McDowall 2023-01-26 20:26:12 -08:00 committed by Bogdan
parent de6c9589d0
commit 72267d3cb4
25 changed files with 591 additions and 18 deletions

View file

@ -1,3 +1,4 @@
import AlbumAppState from './AlbumAppState';
import ArtistAppState, { ArtistIndexAppState } from './ArtistAppState';
import SettingsAppState from './SettingsAppState';
import TagsAppState from './TagsAppState';
@ -35,6 +36,7 @@ export interface CustomFilter {
}
interface AppState {
albums: AlbumAppState;
artist: ArtistAppState;
artistIndex: ArtistIndexAppState;
settings: SettingsAppState;