mirror of
https://github.com/immich-app/immich.git
synced 2025-06-02 13:14:54 -04:00
* add btn, map and marker * Fix bug in navigation assetviewer * Correct bug on main Viewer * Add to user album the map of his pictures * change icon to outline * lint & format * with manager instead of variable * remove duplicate * chore: minor styling change * formatting --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
14 lines
266 B
TypeScript
14 lines
266 B
TypeScript
class AlbumMapViewManager {
|
|
#isInMapView = $state(false);
|
|
|
|
get isInMapView() {
|
|
return this.#isInMapView;
|
|
}
|
|
|
|
set isInMapView(isInMapView: boolean) {
|
|
this.#isInMapView = isInMapView;
|
|
}
|
|
}
|
|
|
|
export const albumMapViewManager = new AlbumMapViewManager();
|