diff --git a/web/react/components/access_history_modal.jsx b/web/react/components/access_history_modal.jsx index 59c3384df0..a19e5c16e2 100644 --- a/web/react/components/access_history_modal.jsx +++ b/web/react/components/access_history_modal.jsx @@ -22,7 +22,7 @@ module.exports = React.createClass({ var self = this; $(this.refs.modal.getDOMNode()).on('hidden.bs.modal', function() { - $('#user_settings1').modal('show'); + $('#user_settings').modal('show'); self.setState({moreInfo: []}); }); }, diff --git a/web/react/components/activity_log_modal.jsx b/web/react/components/activity_log_modal.jsx index 6d466f976b..1192a72bc7 100644 --- a/web/react/components/activity_log_modal.jsx +++ b/web/react/components/activity_log_modal.jsx @@ -37,7 +37,7 @@ module.exports = React.createClass({ var self = this; $(this.refs.modal.getDOMNode()).on('hidden.bs.modal', function(e) { - $('#user_settings1').modal('show'); + $('#user_settings').modal('show'); self.setState({moreInfo: []}); }); }, diff --git a/web/react/components/sidebar_header.jsx b/web/react/components/sidebar_header.jsx index cc3f255eed..761c06e742 100644 --- a/web/react/components/sidebar_header.jsx +++ b/web/react/components/sidebar_header.jsx @@ -96,7 +96,7 @@ var NavbarDropdown = React.createClass({