File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
src/plugins/validate-semantic Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import * as selectors from "./selectors"
22import * as actions from "./actions"
33import traverse from "traverse"
44import { createSelector } from "reselect"
5- import { fromJS } from "immutable"
65import debounce from "lodash/debounce"
76
87import * as formDataValidateActions from "./validators/form-data"
@@ -29,11 +28,7 @@ export default function SemanticValidatorsPlugin({getSystem}) {
2928 jsonAsJS : createSelector (
3029 state => state . get ( "resolved" ) ,
3130 ( spec ) => spec ? spec . toJS ( ) : null
32- ) ,
33- definitions : createSelector (
34- state => state . getIn ( [ "json" , "definitions" ] ) ,
35- ( defs ) => defs || fromJS ( { } )
36- ) ,
31+ )
3732 } ,
3833 wrapActions : {
3934 validateSpec : ( ori , system ) => ( ...args ) => {
You can’t perform that action at this time.
0 commit comments