summaryrefslogtreecommitdiffstats
path: root/webapp/components/edit_channel_header_modal.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components/edit_channel_header_modal.jsx')
-rw-r--r--webapp/components/edit_channel_header_modal.jsx12
1 files changed, 3 insertions, 9 deletions
diff --git a/webapp/components/edit_channel_header_modal.jsx b/webapp/components/edit_channel_header_modal.jsx
index 490b9fb31..0d8eb8acb 100644
--- a/webapp/components/edit_channel_header_modal.jsx
+++ b/webapp/components/edit_channel_header_modal.jsx
@@ -2,13 +2,12 @@
// See License.txt for license information.
import ReactDOM from 'react-dom';
-import AppDispatcher from '../dispatcher/app_dispatcher.jsx';
-import Client from 'client/web_client.jsx';
import Constants from 'utils/constants.jsx';
import * as Utils from 'utils/utils.jsx';
import PreferenceStore from 'stores/preference_store.jsx';
import {intlShape, injectIntl, defineMessages, FormattedMessage} from 'react-intl';
+import {updateChannelHeader} from 'actions/channel_actions.jsx';
import {Modal} from 'react-bootstrap';
@@ -64,17 +63,12 @@ class EditChannelHeaderModal extends React.Component {
handleSubmit() {
this.setState({submitted: true});
- Client.updateChannelHeader(
+ updateChannelHeader(
this.props.channel.id,
this.state.header,
- (channel) => {
+ () => {
this.setState({serverError: ''});
this.onHide();
-
- AppDispatcher.handleServerAction({
- type: Constants.ActionTypes.RECEIVED_CHANNEL,
- channel
- });
},
(err) => {
if (err.id === 'api.context.invalid_param.app_error') {