Skip to content

Commit

Permalink
Merge pull request neos#1743 from ElementareTeilchen/patch-1
Browse files Browse the repository at this point in the history
BUGFIX: PropertyGroup (un)collapsing
  • Loading branch information
dimaip authored Apr 5, 2018
2 parents 35845c1 + a941527 commit 0c47ef8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export default class TabPanel extends PureComponent {
label={$get('label', group)}
icon={$get('icon', group)}
// overlay default collapsed state over current state
collapsed={$get($get('id', group), toggledPanels) != $get('collapsed', group)} // eslint-disable-line eqeqeq
collapsed={Boolean($get($get('id', group), toggledPanels)) !== Boolean($get('collapsed', group))}
properties={$get('properties', group).filter(this.isPropertyEnabled)}
views={$get('views', group)}
renderSecondaryInspector={renderSecondaryInspector}
Expand Down

0 comments on commit 0c47ef8

Please sign in to comment.