Skip to content

Commit

Permalink
Fixing default zoom values from app-events
Browse files Browse the repository at this point in the history
Signed-off-by: Aaron Chong <aaronchongth@gmail.com>
  • Loading branch information
aaronchongth committed Aug 24, 2023
1 parent 42d2eca commit 2adc6bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/dashboard/src/components/app-events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ export const AppEvents = {
refreshAlertCount: new Subject<number>(),
alertListOpenedAlert: new Subject<Alert | null>(),
disabledLayers: new ReplaySubject<Record<string, boolean>>(),
zoom: new BehaviorSubject<number>(5),
zoom: new BehaviorSubject<number>(0.5),
mapCenter: new BehaviorSubject<[number, number]>([0, 0]),
};

0 comments on commit 2adc6bc

Please sign in to comment.