Skip to content

Commit e6af798

Browse files
Fix "Migrate instance to another host" popup modal (#2803)
* Fix "Migrate instance to another host" popup * fix OK button that was not working as it should have been
1 parent 7a0f7ab commit e6af798

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

ui/scripts/ui-custom/migrate.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@
100100

101101
$('div.overlay').fadeOut(function() {
102102
$('div.overlay').remove();
103+
$(':ui-dialog').dialog('destroy');
103104
});
104105
}
105106
else {
@@ -121,7 +122,8 @@
121122
});
122123
}
123124
}]
124-
}).parent('.ui-dialog').overlay();
125+
});
126+
cloudStack.applyDefaultZindexAndOverlayOnJqueryDialogAndRemoveCloseButton($dataList);
125127
};
126128
};
127129
}(cloudStack, jQuery));

0 commit comments

Comments
 (0)