Merge branch 'ios-autofocus' into 'develop'

Fix iOS autofocus bug, fixes #630

Closes #630

See merge request soapbox-pub/soapbox-fe!491
merge-requests/492/merge
Alex Gleason 2021-05-02 20:48:28 +00:00
commit 010a8b5939
1 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

@ -166,8 +166,12 @@ class ComposeForm extends ImmutablePureComponent {
}
componentDidMount() {
const length = this.props.text.length;
document.addEventListener('click', this.handleClick, true);
this.setCursor(this.props.text.length); // Set cursor at end
if (length > 0) {
this.setCursor(length); // Set cursor at end
}
}
componentWillUnmount() {