Browse Source

feat: bug fix

pull/2362/head
natdeanlewissoftwire 2 years ago
parent
commit
119c10cff9
  1. 2
      app/models/form/page.rb

2
app/models/form/page.rb

@ -37,7 +37,7 @@ class Form::Page
end
def has_unanswered_questions?(log)
questions.any? { |question| question.unanswered?(log) }
questions.any? { |question| question.displayed_to_user?(log) && question.unanswered?(log) }
end
def interruption_screen?

Loading…
Cancel
Save