1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-25 20:53:22 +00:00

Fix typo overlayPostition > overlayPosition (#5530)

Co-authored-by: rr-bw <102181210+rr-bw@users.noreply.github.com>
This commit is contained in:
Patrick H. Lauke
2023-07-17 21:02:44 +01:00
committed by GitHub
parent 906c11acb1
commit 20228a485f
5 changed files with 6 additions and 6 deletions

View File

@@ -62,7 +62,7 @@ export class VaultSelectComponent implements OnInit, OnDestroy {
selectedVault$: Observable<string | null> = this._selectedVault.asObservable();
enforcePersonalOwnership = false;
overlayPostition: ConnectedPosition[] = [
overlayPosition: ConnectedPosition[] = [
{
originX: "start",
originY: "bottom",
@@ -149,7 +149,7 @@ export class VaultSelectComponent implements OnInit, OnDestroy {
.withPush(true)
.withViewportMargin(10)
.withGrowAfterOpen(true)
.withPositions(this.overlayPostition);
.withPositions(this.overlayPosition);
this.overlayRef = this.overlay.create({
hasBackdrop: true,