From e9ad24ca58d0a341cdb59db33366cf26515234d5 Mon Sep 17 00:00:00 2001 From: Dani Palou Date: Thu, 5 Jul 2018 15:36:04 +0200 Subject: [PATCH] MOBILE-2469 multichoice: Don't select first option by default --- src/core/question/classes/base-question-component.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/core/question/classes/base-question-component.ts b/src/core/question/classes/base-question-component.ts index f0ab76a35..c1a7d8b85 100644 --- a/src/core/question/classes/base-question-component.ts +++ b/src/core/question/classes/base-question-component.ts @@ -481,11 +481,6 @@ export class CoreQuestionBaseComponent { return this.questionHelper.showComponentError(this.onAbort); } - - if (!this.question.multi && typeof this.question.singleChoiceModel == 'undefined') { - // We couldn't find the option to select, select the first one. - this.question.singleChoiceModel = options[0].value; - } } return questionDiv;