@momentum-design/components 0.73.1 → 0.73.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -473,7 +473,9 @@ class Popover extends FocusTrapMixin(Component) {
|
|
473
473
|
PopoverEventManager.onShowPopover(this);
|
474
474
|
}
|
475
475
|
else {
|
476
|
-
popoverStack.
|
476
|
+
if (popoverStack.peek() === this) {
|
477
|
+
popoverStack.pop();
|
478
|
+
}
|
477
479
|
if (this.backdropElement) {
|
478
480
|
(_a = this.backdropElement) === null || _a === void 0 ? void 0 : _a.remove();
|
479
481
|
this.backdropElement = null;
|
package/package.json
CHANGED