Skip to content
Snippets Groups Projects
Unverified Commit e11dc05f authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Merge pull request #11945 from KDSBrowne/bbb-11647

Fix Text Area's Not Opening IOS Virtual Keyboard
parents 1809f164 3d6c8fc1
No related branches found
No related tags found
No related merge requests found
......@@ -132,7 +132,7 @@ export default class TextDrawListener extends Component {
const textarea = document.getElementById(getCurrentShapeId());
if (textarea) {
if (document.activeElement === textarea) {
if (document.activeElement === textarea && document.activeElement.value.length > 0) {
return true;
}
textarea.focus();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment