We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f31c3a commit 38d74b5Copy full SHA for 38d74b5
src/core.js
@@ -489,6 +489,11 @@ QueryBuilder.prototype.createRuleInput = function(rule) {
489
if (filter.default_value !== undefined) {
490
rule.value = filter.default_value;
491
}
492
+ else {
493
+ that.status.updating_value = true;
494
+ rule.value = that.getRuleValue(rule);
495
+ that.status.updating_value = false;
496
+ }
497
};
498
499
/**
tests/data.module.js
@@ -88,11 +88,6 @@ $(function(){
88
/string_invalid_format/
89
);
90
91
- assert.validationError($b,
92
- { id: 'integer' },
93
- /number_nan/
94
- );
95
-
96
assert.validationError($b,
97
{ id: 'integer', value: 5.2 },
98
/number_not_integer/
0 commit comments