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 7e0444b commit 775e9e2Copy full SHA for 775e9e2
src/components/FlowForm.vue
@@ -429,6 +429,10 @@
429
do {
430
let question = this.questionModels[index]
431
432
+ if (questions.some(q => q === question)) {
433
+ break
434
+ }
435
+
436
question.setIndex(serialIndex)
437
question.language = this.language
438
@@ -445,7 +449,7 @@
445
449
} else {
446
450
for (let i = 0; i < this.questionModels.length; i++) {
447
451
if (this.questionModels[i].id === nextId) {
448
- if (i < index) {
452
+ if (i < index && questions.some(q => q === this.questionModels[i])) {
453
question.answered = false
454
activeIndex = i
455
++index
0 commit comments