Disable dark overlay for Dialog (#423)
This commit is contained in:
parent
1c0fed88c0
commit
51abf1560a
|
@ -69,7 +69,7 @@ export class DialogComponent extends React.Component<DialogProps, {}> {
|
|||
showCloseButton: this.props.showCloseButton || false,
|
||||
onDismiss: this.props.onDismiss,
|
||||
},
|
||||
modalProps: { isBlocking: this.props.isModal },
|
||||
modalProps: { isBlocking: this.props.isModal, isDarkOverlay: false },
|
||||
minWidth: DIALOG_MIN_WIDTH,
|
||||
maxWidth: DIALOG_MAX_WIDTH,
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue