Remove bad checks for emoji picker preview feature (#6861)
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
beac2b0da0
Коммит
97cfe62309
@@ -571,7 +571,7 @@ export default class CreateComment extends React.Component {
|
|||||||
);
|
);
|
||||||
|
|
||||||
let emojiPicker = null;
|
let emojiPicker = null;
|
||||||
if (Utils.isFeatureEnabled(Constants.PRE_RELEASE_FEATURES.EMOJI_PICKER_PREVIEW)) {
|
if (window.mm_config.EnableEmojiPicker === 'true') {
|
||||||
emojiPicker = (
|
emojiPicker = (
|
||||||
<span>
|
<span>
|
||||||
<EmojiPickerOverlay
|
<EmojiPickerOverlay
|
||||||
|
|||||||
@@ -721,7 +721,7 @@ export default class CreatePost extends React.Component {
|
|||||||
);
|
);
|
||||||
|
|
||||||
let emojiPicker = null;
|
let emojiPicker = null;
|
||||||
if (Utils.isFeatureEnabled(Constants.PRE_RELEASE_FEATURES.EMOJI_PICKER_PREVIEW)) {
|
if (window.mm_config.EnableEmojiPicker === 'true') {
|
||||||
emojiPicker = (
|
emojiPicker = (
|
||||||
<span>
|
<span>
|
||||||
<EmojiPickerOverlay
|
<EmojiPickerOverlay
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user