Skip to content

Commit c71de6e

Browse files
fix: hasScrollingContent condition in modal service
1 parent 10001c8 commit c71de6e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/modal/modal.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class ModalService extends BaseModalService {
4949
label: data.label,
5050
title: data.title,
5151
content: data.content,
52-
hasScrollingContent: data.hasScrollingContent || null,
52+
hasScrollingContent: data.hasScrollingContent !== undefined ? data.hasScrollingContent : null,
5353
size: data.size,
5454
buttons: data.buttons || [],
5555
close: data.close || (() => { }),

0 commit comments

Comments
 (0)