From 3112822a48324f1c537db234d5d7e84d6f95c2eb Mon Sep 17 00:00:00 2001 From: Endi S. Dewata Date: Sep 21 2011 22:15:16 +0000 Subject: Fixed missing cancel button in unprovisioning dialog. The host unprovisioning dialog has been modified to provide a cancel button. Ticket #1811 --- diff --git a/install/ui/host.js b/install/ui/host.js index 1b11251..2b0a5a4 100644 --- a/install/ui/host.js +++ b/install/ui/host.js @@ -536,6 +536,10 @@ IPA.host_keytab_widget = function(spec) { ); }); + dialog.add_button(IPA.messages.buttons.cancel, function() { + dialog.close(); + }); + dialog.open(that.container); };