Fix skipped question count

This commit is contained in:
Pieter Vander Vennet 2020-07-25 01:07:02 +02:00
parent 3efcc4d456
commit a39d21a5a9
16 changed files with 3365 additions and 11 deletions

View file

@ -104,7 +104,7 @@ export class FeatureInfoBox extends UIElement {
info.push(infobox);
} else if (infobox.IsQuestioning()) {
questions.push(infobox);
} else {
} else if(infobox.IsSkipped()){
// This question is neither known nor questioning -> it was skipped
skippedQuestions++;
}