Skip to content
Snippets Groups Projects
Unverified Commit 6e7fbd14 authored by Andrew Sliwinski's avatar Andrew Sliwinski Committed by GitHub
Browse files

Merge pull request #1083 from thisandagain/bugfix/1082

Disable the 'collapse' option in the blocks workspace
parents 6990f3ba e5a5f851
No related branches found
No related tags found
No related merge requests found
......@@ -326,7 +326,8 @@ Blocks.propTypes = {
fieldShadow: PropTypes.string,
dragShadowOpacity: PropTypes.number
}),
comments: PropTypes.bool
comments: PropTypes.bool,
collapse: PropTypes.bool
}),
toolboxXML: PropTypes.string,
updateToolboxState: PropTypes.func,
......@@ -356,7 +357,8 @@ Blocks.defaultOptions = {
fieldShadow: 'rgba(255, 255, 255, 0.3)',
dragShadowOpacity: 0.6
},
comments: false
comments: false,
collapse: false
};
Blocks.defaultProps = {
......
......@@ -108,7 +108,8 @@ CustomProcedures.propTypes = {
wheel: PropTypes.bool,
startScale: PropTypes.number
}),
comments: PropTypes.bool
comments: PropTypes.bool,
collapse: PropTypes.bool
})
};
......@@ -119,6 +120,7 @@ CustomProcedures.defaultOptions = {
startScale: 0.9
},
comments: false,
collapse: false,
scrollbars: true
};
......
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