From 3112822a48324f1c537db234d5d7e84d6f95c2eb Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Wed, 21 Sep 2011 16:53:30 -0500 Subject: Fixed missing cancel button in unprovisioning dialog. The host unprovisioning dialog has been modified to provide a cancel button. Ticket #1811 --- install/ui/host.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/install/ui/host.js b/install/ui/host.js index 1b112517..2b0a5a4e 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); }; -- cgit