mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
feat(web): people sidebar link (#4257)
This commit is contained in:
parent
69c23aa3ec
commit
b7fcec7ce3
4 changed files with 36 additions and 2 deletions
|
|
@ -44,6 +44,14 @@ export interface AlbumViewSettings {
|
|||
view: string;
|
||||
}
|
||||
|
||||
export interface SidebarSettings {
|
||||
people: boolean;
|
||||
}
|
||||
|
||||
export const sidebarSettings = persisted<SidebarSettings>('sidebar-settings', {
|
||||
people: false,
|
||||
});
|
||||
|
||||
export enum AlbumViewMode {
|
||||
Cover = 'Cover',
|
||||
List = 'List',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue