mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 06:13:38 +00:00
Fix typo overlayPostition > overlayPosition (#5530)
Co-authored-by: rr-bw <102181210+rr-bw@users.noreply.github.com>
This commit is contained in:
@@ -62,7 +62,7 @@ export class VaultSelectComponent implements OnInit, OnDestroy {
|
|||||||
selectedVault$: Observable<string | null> = this._selectedVault.asObservable();
|
selectedVault$: Observable<string | null> = this._selectedVault.asObservable();
|
||||||
|
|
||||||
enforcePersonalOwnership = false;
|
enforcePersonalOwnership = false;
|
||||||
overlayPostition: ConnectedPosition[] = [
|
overlayPosition: ConnectedPosition[] = [
|
||||||
{
|
{
|
||||||
originX: "start",
|
originX: "start",
|
||||||
originY: "bottom",
|
originY: "bottom",
|
||||||
@@ -149,7 +149,7 @@ export class VaultSelectComponent implements OnInit, OnDestroy {
|
|||||||
.withPush(true)
|
.withPush(true)
|
||||||
.withViewportMargin(10)
|
.withViewportMargin(10)
|
||||||
.withGrowAfterOpen(true)
|
.withGrowAfterOpen(true)
|
||||||
.withPositions(this.overlayPostition);
|
.withPositions(this.overlayPosition);
|
||||||
|
|
||||||
this.overlayRef = this.overlay.create({
|
this.overlayRef = this.overlay.create({
|
||||||
hasBackdrop: true,
|
hasBackdrop: true,
|
||||||
|
|||||||
@@ -42,7 +42,7 @@
|
|||||||
(backdropClick)="close()"
|
(backdropClick)="close()"
|
||||||
(detach)="close()"
|
(detach)="close()"
|
||||||
[cdkConnectedOverlayOpen]="showSwitcher && isOpen"
|
[cdkConnectedOverlayOpen]="showSwitcher && isOpen"
|
||||||
[cdkConnectedOverlayPositions]="overlayPostition"
|
[cdkConnectedOverlayPositions]="overlayPosition"
|
||||||
cdkConnectedOverlayMinWidth="250px"
|
cdkConnectedOverlayMinWidth="250px"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
|
|||||||
@@ -68,7 +68,7 @@ export class AccountSwitcherComponent implements OnInit, OnDestroy {
|
|||||||
activeAccount?: ActiveAccount;
|
activeAccount?: ActiveAccount;
|
||||||
serverUrl: string;
|
serverUrl: string;
|
||||||
authStatus = AuthenticationStatus;
|
authStatus = AuthenticationStatus;
|
||||||
overlayPostition: ConnectedPosition[] = [
|
overlayPosition: ConnectedPosition[] = [
|
||||||
{
|
{
|
||||||
originX: "end",
|
originX: "end",
|
||||||
originY: "bottom",
|
originY: "bottom",
|
||||||
|
|||||||
@@ -23,7 +23,7 @@
|
|||||||
(backdropClick)="close()"
|
(backdropClick)="close()"
|
||||||
(detach)="close()"
|
(detach)="close()"
|
||||||
[cdkConnectedOverlayOpen]="isOpen"
|
[cdkConnectedOverlayOpen]="isOpen"
|
||||||
[cdkConnectedOverlayPositions]="overlayPostition"
|
[cdkConnectedOverlayPositions]="overlayPosition"
|
||||||
>
|
>
|
||||||
<div class="box-content">
|
<div class="box-content">
|
||||||
<div class="environment-selector-dialog" [@transformPanel]="'open'" role="dialog">
|
<div class="environment-selector-dialog" [@transformPanel]="'open'" role="dialog">
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ export class EnvironmentSelectorComponent implements OnInit, OnDestroy {
|
|||||||
showingModal = false;
|
showingModal = false;
|
||||||
selectedEnvironment: Region;
|
selectedEnvironment: Region;
|
||||||
ServerEnvironmentType = Region;
|
ServerEnvironmentType = Region;
|
||||||
overlayPostition: ConnectedPosition[] = [
|
overlayPosition: ConnectedPosition[] = [
|
||||||
{
|
{
|
||||||
originX: "start",
|
originX: "start",
|
||||||
originY: "bottom",
|
originY: "bottom",
|
||||||
|
|||||||
Reference in New Issue
Block a user