Skip to content

Commit 704d0c2

Browse files
committed
merging locally 4.3.0 version
2 parents 024acbd + d61f0ea commit 704d0c2

File tree

9 files changed

+634
-839
lines changed

9 files changed

+634
-839
lines changed

Changelog.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,23 @@ All notable changes to this project will be documented in this file
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## 4.3.0
8+
### Changed
9+
- Upgrade formio.js to 4.9.0.
10+
11+
## 4.2.6
12+
### Changed
13+
- Update dependencies for security updates.
14+
15+
## 4.2.5
16+
### Fixed
17+
- Check validity return correct value.
18+
19+
## 4.2.4
20+
### Fixed
21+
- Empty wizard change event.
22+
- Project access not setting correctly in auth state.
23+
724
## 4.2.3
825
### Fixed
926
- Change event on builder.

lib/components/FormBuilder.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ var _initialiseProps = function _initialiseProps() {
9595
_this2.builderReady = _this2.builder.ready;
9696

9797
_this2.builderReady.then(function () {
98+
_this2.onChange();
9899
_this2.builder.instance.on('saveComponent', _this2.emit('onSaveComponent'));
99100
_this2.builder.instance.on('updateComponent', _this2.emit('onUpdateComponent'));
100101
_this2.builder.instance.on('removeComponent', _this2.emit('onDeleteComponent'));

lib/components/ReactComponent.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ var ReactComponent = function (_Field) {
209209
value: function checkValidity(data, dirty, rowData) {
210210
var valid = _get(ReactComponent.prototype.__proto__ || Object.getPrototypeOf(ReactComponent.prototype), 'checkValidity', this).call(this, data, dirty, rowData);
211211
if (!valid) {
212-
return !valid;
212+
return false;
213213
}
214214
return this.validate(data, dirty, rowData);
215215
}

lib/modules/auth/actions.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ var formAccessUser = function formAccessUser(formAccess) {
6565

6666
var projectAccessUser = function projectAccessUser(projectAccess) {
6767
return {
68-
type: type.USER_FORM_ACCESS,
68+
type: type.USER_PROJECT_ACCESS,
6969
projectAccess: projectAccess
7070
};
7171
};

0 commit comments

Comments
 (0)