fix(client): allow editor links for Py submissions (#41036)

* fix(client): allow editor links for Py submissions

* add isEditorLinkAllowed to PropTypes
This commit is contained in:
Shaun Hamilton
2021-02-10 11:31:08 +00:00
committed by GitHub
parent 3bbf96e495
commit f157eda1af
4 changed files with 11 additions and 5 deletions

View File

@@ -21,6 +21,7 @@ const propTypes = {
initialValues: PropTypes.object,
options: PropTypes.shape({
ignored: PropTypes.arrayOf(PropTypes.string),
isEditorLinkAllowed: PropTypes.bool,
required: PropTypes.arrayOf(PropTypes.string),
types: PropTypes.objectOf(PropTypes.string)
}),