Skip to content

Commit

Permalink
fix: showContent defaults to false
Browse files Browse the repository at this point in the history
  • Loading branch information
lem-onade committed Apr 14, 2020
1 parent 550845e commit e0f59de
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export class DGTSectionComponent {
@Input() public enableTitle = true;
@Input() public showSubtitle = false;
@Input() public showIcon = false;
@Input() public showContent = true;
@Input() public showContent = false;
@Input() public state: DGTSectionState = DGTSectionState.NORMAL;
@Output() public reset: EventEmitter<void> = new EventEmitter<void>();
@Input() public gapUnderTitleInPixels = 20;
Expand Down

0 comments on commit e0f59de

Please sign in to comment.