We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 10001c8 + c71de6e commit 9ad19b0Copy full SHA for 9ad19b0
src/modal/modal.service.ts
@@ -49,7 +49,7 @@ export class ModalService extends BaseModalService {
49
label: data.label,
50
title: data.title,
51
content: data.content,
52
- hasScrollingContent: data.hasScrollingContent || null,
+ hasScrollingContent: data.hasScrollingContent !== undefined ? data.hasScrollingContent : null,
53
size: data.size,
54
buttons: data.buttons || [],
55
close: data.close || (() => { }),
0 commit comments