Skip to content

Commit d31ab92

Browse files
committed
Version bump and CHANGELOG
1 parent e69cb4c commit d31ab92

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

Diff for: CHANGELOG

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v0.8.11
2+
-------
3+
* Bugfix for checkboxes validation in the new builder.
4+
15
v0.8.10
26
-------
37
* Bugfix for checkboxes when model array is undefined.

Diff for: dist/schema-form.js

-3
Original file line numberDiff line numberDiff line change
@@ -2278,7 +2278,6 @@ function(sel, sfPath, schemaForm) {
22782278
//scope.modelArray = modelArray;
22792279
scope.modelArray = scope.$eval(attrs.sfNewArray);
22802280
// validateField method is exported by schema-validate
2281-
console.warn('first! watchFn ', scope.firstDigest)
22822281
if (scope.ngModel && scope.ngModel.$pristine && scope.firstDigest &&
22832282
(!scope.options || scope.options.validateOnRender !== true)) {
22842283
return;
@@ -2852,10 +2851,8 @@ angular.module('schemaForm').directive('schemaValidate', ['sfValidator', '$parse
28522851
};
28532852

28542853
ngModel.$formatters.push(function(val) {
2855-
28562854
// When a form first loads this will be called for each field.
28572855
// we usually don't want that.
2858-
28592856
if (ngModel.$pristine && scope.firstDigest &&
28602857
(!scope.options || scope.options.validateOnRender !== true)) {
28612858
return val;

Diff for: dist/schema-form.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-schema-form",
3-
"version": "0.8.10",
3+
"version": "0.8.11",
44
"description": "Create complex forms from a JSON schema with angular.",
55
"repository": "Textalk/angular-schema-form",
66
"main": "dist/schema-form.min.js",

0 commit comments

Comments
 (0)