diff --git a/ui/scripts/ui-custom/instanceWizard.js b/ui/scripts/ui-custom/instanceWizard.js index bc6523e97a3..c5c6491a8be 100644 --- a/ui/scripts/ui-custom/instanceWizard.js +++ b/ui/scripts/ui-custom/instanceWizard.js @@ -84,7 +84,14 @@ var $radio = $(this).closest('.select').find('input[type=radio]'); if ($radio.is(':checked') && !$(this).is(':checked')) { - return false; + if (!$radio.closest('.select').index()) { + return false; + } else { + $radio + .closest('.select') + .siblings().filter(':first') + .find('input[type=radio]').click(); + } } return true;