Skip to content

Commit

Permalink
fix sending channelId
Browse files Browse the repository at this point in the history
  • Loading branch information
mathieudutour committed Sep 19, 2017
1 parent f42220b commit 0111fbd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions client/src/NetworkHOC.tsx
Expand Up @@ -58,7 +58,7 @@ export const NetworkHOC = (
props.teamId +
'&labels=' +
encodeURIComponent(JSON.stringify(props.labels || {})) +
(props.channelId ? '&channel=' + props.channelId : '') +
(props.channelId ? '&channelId=' + props.channelId : '') +
(props.redirectURL ? '&redirectURL=' + props.redirectURL : '')
)

Expand Down Expand Up @@ -237,13 +237,13 @@ export const NetworkHOC = (

public open = () => {
this.setState({
showing: true
showing: true,
})
}

public close = () => {
this.setState({
showing: false
showing: false,
})
}
}

0 comments on commit 0111fbd

Please sign in to comment.