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 Jan 2, 2025
1 parent 88dfe53 commit 8a0e7c2
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 8a0e7c2

Please sign in to comment.