This commit is contained in:
Matthew Hodgson 2019-05-19 21:00:14 +01:00
parent 64e2de5b47
commit 81338306b0
5 changed files with 4 additions and 8 deletions

View file

@ -1417,8 +1417,10 @@ export default class MessageComposerInput extends React.Component {
</a>;
}
}
case 'emoji':
case 'emoji': {
const { data } = node;
return data.get('emojiUnicode');
}
}
};

View file

@ -17,7 +17,6 @@ limitations under the License.
import React from 'react';
import PropTypes from 'prop-types';
import sdk from '../../../index';
import WhoIsTyping from '../../../WhoIsTyping';
import Timer from '../../../utils/Timer';
import MatrixClientPeg from '../../../MatrixClientPeg';