Skip to content

Commit

Permalink
Merge branch '2.2' into 2
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli committed Jun 11, 2024
2 parents fc76d17 + df02655 commit 5a2e532
Show file tree
Hide file tree
Showing 5 changed files with 158 additions and 107 deletions.
2 changes: 1 addition & 1 deletion client/dist/js/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/dist/js/vendor.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion client/src/containers/FormBuilderLoader/FormBuilderLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class FormBuilderLoader extends Component {
}

componentDidUpdate(prevProps) {
if (this.props.schemaUrl !== prevProps.schemaUrl) {
if (this.props.schemaUrl !== prevProps.schemaUrl || this.props.refetchSchemaCriteria !== prevProps.refetchSchemaCriteria) {
this.fetch();
}
}
Expand Down Expand Up @@ -441,6 +441,7 @@ FormBuilderLoader.propTypes = Object.assign({}, basePropTypes, {
schemaUrl: PropTypes.string.isRequired,
schema: schemaPropType,
refetchSchemaOnMount: PropTypes.bool.isRequired,
refetchSchemaCriteria: PropTypes.string,
form: PropTypes.string,
submitting: PropTypes.bool,
onFetchingSchema: PropTypes.func,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"toposort": "^2.0.2",
"url": "^0.11.0",
"uuid": "^9.0.0",
"validator": "^13.7.0",
"validator": "^13.12.0",
"webpack-sources": "^3.2.3"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit 5a2e532

Please sign in to comment.