diff --git a/react/features/reactions/components/ReactionsDialog.web.js b/react/features/reactions/components/ReactionsDialog.web.js index 083a36e5f..3396d7d96 100644 --- a/react/features/reactions/components/ReactionsDialog.web.js +++ b/react/features/reactions/components/ReactionsDialog.web.js @@ -18,7 +18,19 @@ const REACTIONS = [ ]; // FIXME Pretend there's a list of supported reactions (i.e. reaction buttons). -for (let i = 1; i < 21; ++i) { +REACTIONS.push('bomb'); +REACTIONS.push('bulb'); +REACTIONS.push('clap'); +REACTIONS.push('fistbump'); +REACTIONS.push('heart'); +REACTIONS.push('highfive'); +REACTIONS.push('perfect'); +REACTIONS.push('sleep'); +REACTIONS.push('star'); +REACTIONS.push('thumbsdown'); +REACTIONS.push('thumbsup'); +for (let i = 1; i < 11; ++i) { + REACTIONS.push(`smiley${i}`); } @@ -72,7 +84,7 @@ class ReactionsDialog extends Component { + src = { `images/emojis/${reaction}.png` } /> ); /* eslint-enable react/jsx-no-bind */ diff --git a/webpack.config.js b/webpack.config.js index f8124271c..8b26affe9 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -183,7 +183,8 @@ module.exports = [ * target, undefined; otherwise, the path to the local file to be served. */ function devServerProxyBypass({ path }) { - if (path.startsWith('/css/') || path.startsWith('/doc/')) { + if (path.startsWith('/css/') || path.startsWith('/doc/') + || path.startsWith('/images/')) { return path; }