Fix iOS autofocus bug, fixes #630

link-previews
Alex Gleason 2021-05-02 15:30:29 -05:00
rodzic 80110155bd
commit 4339378018
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 7211D1F99744FBB7
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() {