mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 08:31:59 +00:00
fix(web): sidebar setting not updating when there is a new property added to the data payload (#4708)
This commit is contained in:
parent
c77ba46d60
commit
c54a188154
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ export interface SidebarSettings {
|
||||||
sharing: boolean;
|
sharing: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const sidebarSettings = persisted<SidebarSettings>('sidebar-settings', {
|
export const sidebarSettings = persisted<SidebarSettings>('sidebar-settings-1', {
|
||||||
people: false,
|
people: false,
|
||||||
sharing: true,
|
sharing: true,
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue