@formio/js 5.1.0-dev.6085.9179bc5 → 5.1.0-dev.6086.0b0957a
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/formio.form.js +1 -1
- package/dist/formio.form.min.js +1 -1
- package/dist/formio.full.js +1 -1
- package/dist/formio.full.min.js +1 -1
- package/lib/cjs/Webform.js +1 -3
- package/lib/mjs/Webform.js +1 -3
- package/package.json +1 -1
package/lib/cjs/Webform.js
CHANGED
@@ -661,9 +661,7 @@ class Webform extends NestedDataComponent_1.default {
|
|
661
661
|
const rebuild = this.rebuild() || Promise.resolve();
|
662
662
|
return rebuild.then(() => {
|
663
663
|
this.emit('formLoad', form);
|
664
|
-
|
665
|
-
this.triggerCaptcha();
|
666
|
-
}
|
664
|
+
this.triggerCaptcha();
|
667
665
|
// Make sure to trigger onChange after a render event occurs to speed up form rendering.
|
668
666
|
setTimeout(() => {
|
669
667
|
this.onChange(flags);
|
package/lib/mjs/Webform.js
CHANGED
@@ -659,9 +659,7 @@ export default class Webform extends NestedDataComponent {
|
|
659
659
|
const rebuild = this.rebuild() || Promise.resolve();
|
660
660
|
return rebuild.then(() => {
|
661
661
|
this.emit('formLoad', form);
|
662
|
-
|
663
|
-
this.triggerCaptcha();
|
664
|
-
}
|
662
|
+
this.triggerCaptcha();
|
665
663
|
// Make sure to trigger onChange after a render event occurs to speed up form rendering.
|
666
664
|
setTimeout(() => {
|
667
665
|
this.onChange(flags);
|