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.
1 parent dedcb14 commit e0b70f2Copy full SHA for e0b70f2
src/editors/sharedComponents/SourceCodeModal/__snapshots__/index.test.jsx.snap
@@ -34,7 +34,6 @@ exports[`SourceCodeModal renders as expected with default behavior 1`] = `
34
<div
35
style={
36
Object {
37
- "height": "300px",
38
"padding": "10px 30px",
39
}
40
src/editors/sharedComponents/SourceCodeModal/index.jsx
@@ -34,13 +34,12 @@ export const SourceCodeModal = ({
isOpen={isOpen}
title={intl.formatMessage(messages.titleLabel)}
>
- <div style={{ padding: '10px 30px', height: '300px' }}>
+ <div style={{ padding: '10px 30px' }}>
<CodeEditor
innerRef={ref}
value={value}
41
/>
42
</div>
43
-
44
</BaseModal>
45
);
46
};
0 commit comments