Disable input field autocomplete

This commit is contained in:
mg
2021-10-22 07:45:31 +01:00
parent ef687ec869
commit 257a428316
7 changed files with 13 additions and 0 deletions
+1
View File
@@ -385,6 +385,7 @@ export default withRouter(class GroupPage extends Component {
value={this.state.groupName}
onKeyDown={this.handleInputKeypress}
ref={inputEl => (this.groupNameInput = inputEl)}
autocomplete="off"
/>
<Button
onClick={this.renameGroup}