diff --git a/horizon/static/horizon/js/horizon.forms.js b/horizon/static/horizon/js/horizon.forms.js index caba00b969..35bdadaea5 100644 --- a/horizon/static/horizon/js/horizon.forms.js +++ b/horizon/static/horizon/js/horizon.forms.js @@ -314,7 +314,7 @@ horizon.addInitFunction(horizon.forms.init = function () { $switchables.each(function (index, switchable) { var $switchable = $(switchable), - visible = $switchable.is(':visible'), + visible = $switchable.parent().hasClass('themable-checkbox') ? $switchable.siblings('label').is(':visible') : $switchable.is(':visible'), slug = $switchable.data('slug'), checked = $switchable.prop('checked'), hide_tab = String($switchable.data('hide-tab')).split(','), diff --git a/horizon/templates/horizon/common/_workflow.html b/horizon/templates/horizon/common/_workflow.html index 22797d5f7b..53190c88ee 100644 --- a/horizon/templates/horizon/common/_workflow.html +++ b/horizon/templates/horizon/common/_workflow.html @@ -19,7 +19,7 @@