From 78a70fca9de29879948d1ba21016d93810147f87 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(+) (limited to 'install') 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