- Added config to prevent closing the dialog (except by clicking the
'cancel'-button of course)
- Changed property 'width' of the motion-detail-card, so the size will be
adjusted automatically.
This commit is contained in:
GabrielMeyer 2019-01-29 12:43:14 +01:00
parent 1bee3aa509
commit a1bc0290ed
1 changed files with 2 additions and 1 deletions

View File

@ -758,7 +758,8 @@ export class MotionDetailComponent extends BaseViewComponent implements OnInit {
this.dialogService.open(MotionChangeRecommendationComponent, {
height: '400px',
width: '600px',
data: data
data: data,
disableClose: true
});
}