Skip to content
Snippets Groups Projects
Commit 3f6b09b0 authored by piotr.kupczyk@id.ethz.ch's avatar piotr.kupczyk@id.ethz.ch
Browse files

SSDM-7583 : ObjectTypeForm - improve resizing of the parameters section

parent 26ae9958
No related branches found
No related tags found
No related merge requests found
......@@ -513,6 +513,10 @@ class ObjectType extends React.PureComponent {
</div>
</div>
<Resizable
defaultSize={{
width: 400,
height: 'auto'
}}
enable={{
left: true,
top: false,
......
......@@ -5,11 +5,7 @@ import ObjectTypeParametersProperty from './ObjectTypeParametersProperty.jsx'
import ObjectTypeParametersSection from './ObjectTypeParametersSection.jsx'
import logger from '../../../common/logger.js'
const styles = () => ({
container: {
minWidth: '400px'
}
})
const styles = () => ({})
class ObjectTypeParameters extends React.PureComponent {
constructor(props) {
......@@ -25,12 +21,11 @@ class ObjectTypeParameters extends React.PureComponent {
properties,
selection,
onChange,
onSelectionChange,
classes
onSelectionChange
} = this.props
return (
<div className={classes.container}>
<div>
<ObjectTypeParametersType
type={type}
selection={selection}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment