Skip to content

Commit 94df929

Browse files
authored
Merge pull request #4645 from dpalou/MOBILE-4842
MOBILE-4842 question: Tmp fix for essay questions in offline quizzes
2 parents dafaf83 + 3ce9715 commit 94df929

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed
56 Bytes
Loading
129 Bytes
Loading

src/core/features/question/services/question-helper.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,11 @@ export class CoreQuestionHelperProvider {
405405
return;
406406
}
407407

408+
// @todo: Temporary fix, see MOBILE-4956.
409+
if (name.startsWith('ion-textarea-')) {
410+
return;
411+
}
412+
408413
// Get the value.
409414
if (element.type == 'checkbox') {
410415
answers[name] = !!element.checked;

0 commit comments

Comments
 (0)