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 a0e7b81 commit fcf1d88Copy full SHA for fcf1d88
src/Formio.js
@@ -560,7 +560,7 @@ export default class Formio {
560
return NativePromise.all([
561
(form !== undefined) ? NativePromise.resolve(form) : this.loadForm(),
562
(user !== undefined) ? NativePromise.resolve(user) : this.currentUser(),
563
- (submission !== undefined) ? NativePromise.resolve(submission) : this.loadSubmission(),
+ (submission !== undefined || !this.submissionId) ? NativePromise.resolve(submission) : this.loadSubmission(),
564
this.accessInfo()
565
]).then((results) => {
566
const form = results.shift();
0 commit comments