Merge pull request #1149 from mattermost/plt-808
PLT-808 Fix deleting channels breaking the webhook UI
Этот коммит содержится в:
@@ -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 = (
|
||||
|
||||
Ссылка в новой задаче
Block a user