fix(Popup): incorrect overlay z-index when reopened (#6429)

This commit is contained in:
neverland 2020-05-31 20:33:07 +08:00 committed by GitHub
parent 8a05cd529a
commit 16f54e3d75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -51,7 +51,10 @@ export function updateOverlay(vm: any): void {
}
export function openOverlay(vm: any, config: OverlayConfig): void {
if (!context.find(vm)) {
const item = context.find(vm);
if (item) {
item.config = config;
} else {
const overlay = mountOverlay(vm);
context.stack.push({ vm, config, overlay });
}