Skip to content

Commit

Permalink
Merge pull request #2016 from bcgov/bugfix/ALCS-2429
Browse files Browse the repository at this point in the history
Add max height to prevent unscrollable overflow
  • Loading branch information
trslater authored Dec 16, 2024
2 parents 12ce000 + 7a3f481 commit cfd5f76
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ export class DecisionConditionTypesComponent implements OnInit {

async onCreate() {
const dialog = this.dialog.open(DecisionConditionTypesDialogComponent, {
maxHeight: '80vh',
minWidth: '600px',
maxWidth: '800px',
width: '70%',
Expand All @@ -67,6 +68,7 @@ export class DecisionConditionTypesComponent implements OnInit {

async onEdit(dto: ApplicationDecisionConditionTypeDto | NoticeOfIntentDecisionConditionTypeDto) {
const dialog = this.dialog.open(DecisionConditionTypesDialogComponent, {
maxHeight: '80vh',
minWidth: '600px',
maxWidth: '800px',
width: '70%',
Expand Down

0 comments on commit cfd5f76

Please sign in to comment.