From f5c5c3cffa4f34046b0e9471a9f193db3772180e Mon Sep 17 00:00:00 2001 From: Sean Perkins Date: Thu, 3 Feb 2022 15:56:04 -0500 Subject: [PATCH] fix(popover): use alignment with popover options (#24711) Resolves #24709 --- core/src/components/popover/popover-interface.ts | 2 +- core/src/components/popover/readme.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/components/popover/popover-interface.ts b/core/src/components/popover/popover-interface.ts index e8f796a38e..3a58701329 100644 --- a/core/src/components/popover/popover-interface.ts +++ b/core/src/components/popover/popover-interface.ts @@ -29,7 +29,7 @@ export interface PopoverOptions { dismissOnSelect?: boolean; reference?: PositionReference; side?: PositionSide; - align?: PositionAlign; + alignment?: PositionAlign; arrow?: boolean; trigger?: string; diff --git a/core/src/components/popover/readme.md b/core/src/components/popover/readme.md index 90ba567ec3..0f2d09926e 100644 --- a/core/src/components/popover/readme.md +++ b/core/src/components/popover/readme.md @@ -107,7 +107,7 @@ interface PopoverOptions { dismissOnSelect?: boolean; reference?: PositionReference; side?: PositionSide; - align?: PositionAlign; + alignment?: PositionAlign; arrow?: boolean; } ```