feat(web): persist info panel (#3013)

Signed-off-by: martabal <74269598+martabal@users.noreply.github.com>
This commit is contained in:
martin 2023-06-29 04:14:16 +02:00 committed by GitHub
parent 1ab05e8de0
commit fbd98ec0f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 6 deletions

View file

@ -38,6 +38,8 @@ export const mapSettings = persisted<MapSettings>('map-settings', {
export const videoViewerVolume = persisted<number>('video-viewer-volume', 1, {});
export const isShowDetail = persisted<boolean>('info-opened', false, {});
export interface AlbumViewSettings {
sortBy: string;
}