Skip to content
Snippets Groups Projects
Commit afd7ec6f authored by Milan Jaros's avatar Milan Jaros
Browse files

f

parent c58767f1
No related branches found
No related tags found
1 merge request!1Ncc v2.2.4
......@@ -267,7 +267,7 @@ export default {
while (index < this.form.questions.length - 1) {
index = index + 1
const textQ = this.form.questions[index].text
if (textQ.includes('[n]') && questionsArray.length > 0) {
if (textQ.includes('[n]')) {
// index = index - 1
break
}
......@@ -298,12 +298,12 @@ export default {
try {
if (this.questionIndex < this.form.questions.length - 1) {
index = this.questionIndex + 1
let index = this.questionIndex + 1
while (index < this.form.questions.length - 1) {
index = index + 1
const textQ = this.form.questions[index].text
if (textQ.includes('[n]') && questionsArray.length > 0) {
if (textQ.includes('[n]')) {
index = index - 1
break
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment