Skip to content

Commit bcc1ccf

Browse files
Merge pull request #1663 from creative-commoners/pulls/2.1/fix-elemental-htmleditor
FIX Type error
2 parents c16fb0f + 359a395 commit bcc1ccf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

client/dist/js/bundle.js

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

client/src/legacy/HtmlEditorField.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ ss.editorWrappers.tinyMCE = (function() {
8686
getConfig: function() {
8787
var selector = "#" + editorID,
8888
config = jQuery(selector).data('config'),
89-
height = config.row_height ? config.row_height : 'undefined',
89+
height = config.row_height ? config.row_height : undefined,
9090
self = this;
9191

9292
// Add instance specific data to config

0 commit comments

Comments
 (0)