Skip to content

Commit bb4e6ae

Browse files
Merge pull request #11 from shoutem/release/0.16.2
Release/0.16.2
2 parents 3b75544 + bd2f091 commit bb4e6ae

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@shoutem/react-web-ui",
3-
"version": "0.16.1",
3+
"version": "0.16.2",
44
"description": "React UI kit for Shoutem extensions",
55
"main": "lib/index.js",
66
"files": [

src/components/rich-text-editor/const.js

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import _ from 'lodash';
22
import customPlugins from './customPlugins';
33

44
export function resolveEditorOptions(allPlugins) {
5-
const resolvedPlugins = _.map(allPlugins, (plugin) => {
5+
const resolvedPlugins = _.map(allPlugins, plugin => {
66
if (
77
plugin.name === customPlugins.IMAGESCC_CUSTOM_PLUGIN ||
88
plugin.name === customPlugins.EMOJI_CUSTOM_PLUGIN
@@ -12,7 +12,7 @@ export function resolveEditorOptions(allPlugins) {
1212

1313
return plugin.definition;
1414
});
15-
const resolvedCustomPluginButtons = _.map(allPlugins, (plugin) => {
15+
const resolvedCustomPluginButtons = _.map(allPlugins, plugin => {
1616
if (
1717
plugin.name === customPlugins.IMAGESCC_CUSTOM_PLUGIN ||
1818
plugin.name === customPlugins.EMOJI_CUSTOM_PLUGIN
@@ -56,6 +56,7 @@ export function resolveEditorOptions(allPlugins) {
5656
[
5757
'link',
5858
'video',
59+
'image',
5960
{
6061
name: 'imagesCCcustomPlugin',
6162
dataCommand: 'imagesCCcustomPlugin',

0 commit comments

Comments
 (0)