summaryrefslogtreecommitdiffstats
path: root/webapp
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-07-15 10:18:23 -0400
committerChristopher Speller <crspeller@gmail.com>2016-07-15 10:18:23 -0400
commit47535ed0c7b8155fb7cdcb3cf226fb9cc57bc542 (patch)
treec77d85733625b386414d407b788151f52bb85abb /webapp
parent8936f65c9032eb363ff936c6bbac5a94a348585d (diff)
downloadchat-47535ed0c7b8155fb7cdcb3cf226fb9cc57bc542.tar.gz
chat-47535ed0c7b8155fb7cdcb3cf226fb9cc57bc542.tar.bz2
chat-47535ed0c7b8155fb7cdcb3cf226fb9cc57bc542.zip
Fix text fields in team settings modal to better allow quick typing in IE11 (#3599)
Diffstat (limited to 'webapp')
-rw-r--r--webapp/components/team_general_tab.jsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/webapp/components/team_general_tab.jsx b/webapp/components/team_general_tab.jsx
index 2814119c6..ac50c69a0 100644
--- a/webapp/components/team_general_tab.jsx
+++ b/webapp/components/team_general_tab.jsx
@@ -255,12 +255,10 @@ class GeneralTab extends React.Component {
}
updateName(e) {
- e.preventDefault();
this.setState({name: e.target.value});
}
updateInviteId(e) {
- e.preventDefault();
this.setState({invite_id: e.target.value});
}