mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-25 12:15:18 +01:00
Fix typo overlayPostition
> overlayPosition
(#5530)
Co-authored-by: rr-bw <102181210+rr-bw@users.noreply.github.com>
This commit is contained in:
parent
906c11acb1
commit
20228a485f
@ -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,
|
||||
|
@ -42,7 +42,7 @@
|
||||
(backdropClick)="close()"
|
||||
(detach)="close()"
|
||||
[cdkConnectedOverlayOpen]="showSwitcher && isOpen"
|
||||
[cdkConnectedOverlayPositions]="overlayPostition"
|
||||
[cdkConnectedOverlayPositions]="overlayPosition"
|
||||
cdkConnectedOverlayMinWidth="250px"
|
||||
>
|
||||
<div
|
||||
|
@ -68,7 +68,7 @@ export class AccountSwitcherComponent implements OnInit, OnDestroy {
|
||||
activeAccount?: ActiveAccount;
|
||||
serverUrl: string;
|
||||
authStatus = AuthenticationStatus;
|
||||
overlayPostition: ConnectedPosition[] = [
|
||||
overlayPosition: ConnectedPosition[] = [
|
||||
{
|
||||
originX: "end",
|
||||
originY: "bottom",
|
||||
|
@ -23,7 +23,7 @@
|
||||
(backdropClick)="close()"
|
||||
(detach)="close()"
|
||||
[cdkConnectedOverlayOpen]="isOpen"
|
||||
[cdkConnectedOverlayPositions]="overlayPostition"
|
||||
[cdkConnectedOverlayPositions]="overlayPosition"
|
||||
>
|
||||
<div class="box-content">
|
||||
<div class="environment-selector-dialog" [@transformPanel]="'open'" role="dialog">
|
||||
|
@ -42,7 +42,7 @@ export class EnvironmentSelectorComponent implements OnInit, OnDestroy {
|
||||
showingModal = false;
|
||||
selectedEnvironment: Region;
|
||||
ServerEnvironmentType = Region;
|
||||
overlayPostition: ConnectedPosition[] = [
|
||||
overlayPosition: ConnectedPosition[] = [
|
||||
{
|
||||
originX: "start",
|
||||
originY: "bottom",
|
||||
|
Loading…
Reference in New Issue
Block a user