From 2009ce47b7e2b55eac8ba6bd2be2f20393d79ac5 Mon Sep 17 00:00:00 2001 From: rhenck <richard.henck@iqb.hu-berlin.de> Date: Mon, 28 Mar 2022 17:48:53 +0200 Subject: [PATCH] [player] Fix showing keyboard in cloze elements --- .../element-compound-group/element-compound-group.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/player/src/app/components/element-compound-group/element-compound-group.component.ts b/projects/player/src/app/components/element-compound-group/element-compound-group.component.ts index 7d8ceef25..a1cafc95f 100644 --- a/projects/player/src/app/components/element-compound-group/element-compound-group.component.ts +++ b/projects/player/src/app/components/element-compound-group/element-compound-group.component.ts @@ -60,7 +60,7 @@ export class ElementCompoundGroupComponent extends ElementFormGroupDirective imp if (childModel.inputAssistance !== 'none') { this.isKeypadOpen = this.keypadService.toggle(element, child as TextFieldComponent); } - if (this.elementModel.showSoftwareKeyboard) { + if (childModel.showSoftwareKeyboard) { this.keyboardService.toggle(element, child as TextFieldComponent); } }); -- GitLab