Skip to content

Commit 2a22e0a

Browse files
committed
Fix issue with optional LongTextType on mobile
1 parent 8341b69 commit 2a22e0a

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/components/QuestionTypes/LongTextType.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,10 @@
7070
},
7171
7272
onEnter() {
73-
if (!this.isMobile) {
74-
this._onEnter()
73+
this._onEnter()
74+
75+
if (this.isMobile) {
76+
this.focus()
7577
}
7678
}
7779
}

0 commit comments

Comments
 (0)