Update default town square purpose (#5810)
Этот коммит содержится в:
коммит произвёл
George Goldberg
родитель
3ea091fd6d
Коммит
4c1eb7ff55
@@ -2,6 +2,7 @@
|
||||
// See License.txt for license information.
|
||||
|
||||
import * as Utils from 'utils/utils.jsx';
|
||||
import Constants from 'utils/constants.jsx';
|
||||
|
||||
import {FormattedMessage} from 'react-intl';
|
||||
import {Modal} from 'react-bootstrap';
|
||||
@@ -47,9 +48,21 @@ export default class ChannelInfoModal extends React.Component {
|
||||
|
||||
const channelURL = TeamStore.getCurrentTeamUrl() + '/channels/' + channel.name;
|
||||
|
||||
let channelPurpose = null;
|
||||
let channelPurpose;
|
||||
if (channel.purpose) {
|
||||
channelPurpose = channel.purpose;
|
||||
} else if (channel.name === Constants.DEFAULT_CHANNEL) {
|
||||
channelPurpose = (
|
||||
<FormattedMessage
|
||||
id='default_channel.purpose'
|
||||
defaultMessage='Post messages here that you want everyone to see. Everyone automatically becomes a permanent member of this channel when they join the team.'
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
let channelPurposeElement;
|
||||
if (channelPurpose) {
|
||||
channelPurposeElement = (
|
||||
<div className='form-group'>
|
||||
<div className='info__label'>
|
||||
<FormattedMessage
|
||||
@@ -57,7 +70,7 @@ export default class ChannelInfoModal extends React.Component {
|
||||
defaultMessage='Purpose:'
|
||||
/>
|
||||
</div>
|
||||
<div className='info__value'>{channel.purpose}</div>
|
||||
<div className='info__value'>{channelPurpose}</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -97,7 +110,7 @@ export default class ChannelInfoModal extends React.Component {
|
||||
</Modal.Title>
|
||||
</Modal.Header>
|
||||
<Modal.Body ref='modalBody'>
|
||||
{channelPurpose}
|
||||
{channelPurposeElement}
|
||||
{channelHeader}
|
||||
<div className='form-group'>
|
||||
<div className='info__label'>
|
||||
|
||||
Ссылка в новой задаче
Block a user