Skip to content

Commit 9a846bf

Browse files
committed
Update CKE to 12.3, enable image support
1 parent 8351ae8 commit 9a846bf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/components/base/Base.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Validator from '../Validator';
99
import Widgets from '../../widgets';
1010
import Component from '../../Component';
1111
import dragula from 'dragula';
12-
const CKEDITOR = 'https://cdn.staticaly.com/gh/formio/ckeditor5-build-classic/v12.2.0-formio.1/build/ckeditor.js';
12+
const CKEDITOR = 'https://cdn.staticaly.com/gh/formio/ckeditor5-build-classic/v12.3.0-formio.1/build/ckeditor.js';
1313

1414
/**
1515
* This is the BaseComponent class which all elements within the FormioForm derive from.
@@ -1969,6 +1969,7 @@ export default class BaseComponent extends Component {
19691969

19701970
addCKE(element, settings, onChange) {
19711971
settings = _.isEmpty(settings) ? {} : settings;
1972+
settings.base64Upload = true;
19721973
return Formio.requireLibrary('ckeditor', 'ClassicEditor', CKEDITOR, true)
19731974
.then(() => {
19741975
if (!element.parentNode) {

0 commit comments

Comments
 (0)