Merge pull request #2150 from ZBoxApp/PLT-1963

PLT-1963: Fixing intl console error on Outgoing webhook edit
This commit is contained in:
Christopher Speller
2016-02-11 14:31:23 -05:00

View File

@@ -18,6 +18,10 @@ const holders = defineMessages({
callbackHolder: {
id: 'user.settings.hooks_out.callbackHolder',
defaultMessage: 'Each URL must start with http:// or https://'
},
select: {
id: 'user.settings.hooks_out.select',
defaultMessage: '--- Select a channel ---'
}
});
@@ -153,10 +157,7 @@ class ManageOutgoingHooks extends React.Component {
key='select-channel'
value=''
>
<FormattedMessage
id='user.settings.hooks_out.select'
defaultMessage='--- Select a channel ---'
/>
{this.props.intl.formatMessage(holders.select)}
</option>
);