summaryrefslogtreecommitdiffstats
path: root/web/react/components/user_settings/user_settings_integrations.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-10-23 08:34:57 -0400
committerChristopher Speller <crspeller@gmail.com>2015-10-23 08:34:57 -0400
commitc8edad29c1a1c86fe3ac20ab4da8cc99f038c2a6 (patch)
tree4ab3c63173c52f71a98925c478ca00be4df0225c /web/react/components/user_settings/user_settings_integrations.jsx
parent8db383d2e33520fcf4318f27d905418abdbc28da (diff)
parenta431ba2c22918412d90d00c37fb89f6841f47eb8 (diff)
downloadchat-c8edad29c1a1c86fe3ac20ab4da8cc99f038c2a6.tar.gz
chat-c8edad29c1a1c86fe3ac20ab4da8cc99f038c2a6.tar.bz2
chat-c8edad29c1a1c86fe3ac20ab4da8cc99f038c2a6.zip
Merge pull request #1149 from mattermost/plt-808
PLT-808 Fix deleting channels breaking the webhook UI
Diffstat (limited to 'web/react/components/user_settings/user_settings_integrations.jsx')
-rw-r--r--web/react/components/user_settings/user_settings_integrations.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/user_settings/user_settings_integrations.jsx b/web/react/components/user_settings/user_settings_integrations.jsx
index 1d9ea0ad5..83a6bf53a 100644
--- a/web/react/components/user_settings/user_settings_integrations.jsx
+++ b/web/react/components/user_settings/user_settings_integrations.jsx
@@ -37,7 +37,7 @@ export default class UserSettingsIntegrationsTab extends React.Component {
if (global.window.mm_config.EnableIncomingWebhooks === 'true') {
if (this.props.activeSection === 'incoming-hooks') {
inputs.push(
- <ManageIncomingHooks />
+ <ManageIncomingHooks key='incoming-hook-ui' />
);
incomingHooksSection = (
@@ -68,7 +68,7 @@ export default class UserSettingsIntegrationsTab extends React.Component {
if (global.window.mm_config.EnableOutgoingWebhooks === 'true') {
if (this.props.activeSection === 'outgoing-hooks') {
inputs.push(
- <ManageOutgoingHooks />
+ <ManageOutgoingHooks key='outgoing-hook-ui' />
);
outgoingHooksSection = (