Skip to content

Commit

Permalink
👽 [#4969] Got bootstrap'ed again
Browse files Browse the repository at this point in the history
Bootstrap CSS hides the django collapsed fieldsets because no .show
class is present. The easiest workaround is to add this class name to
ignore bootstrap's behaviour.
  • Loading branch information
sergei-maertens committed Dec 31, 2024
1 parent 46b0d2b commit 37253fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openforms/js/components/admin/forms/Fieldset.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const Fieldset = ({
</h2>
) : null;
const className = classNames('module', 'aligned', extraClassName, {
'collapse in': collapsible,
'collapse in show': collapsible,
collapsed: collapsed,
});

Expand Down

0 comments on commit 37253fe

Please sign in to comment.