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 85d3a7b + 95e78b6 commit 47edef6Copy full SHA for 47edef6
packages/scratch-gui/src/components/modal/modal.jsx
@@ -17,7 +17,9 @@ const ModalComponent = props => (
17
<ReactModal
18
isOpen
19
className={classNames(styles.modalContent, props.className, {
20
- [styles.fullScreen]: props.fullScreen
+ [styles.fullScreen]: props.fullScreen,
21
+ // Used by scratch-platorm to distinguish between editor modals and other modals
22
+ 'scratch-editor-modal': true
23
})}
24
contentLabel={props.contentLabel}
25
overlayClassName={styles.modalOverlay}
0 commit comments