Skip to content

Commit

Permalink
Merge pull request #1663 from creative-commoners/pulls/2.1/fix-elemen…
Browse files Browse the repository at this point in the history
…tal-htmleditor

FIX Type error
  • Loading branch information
sabina-talipova authored Jan 25, 2024
2 parents c16fb0f + 359a395 commit bcc1ccf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion client/dist/js/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/src/legacy/HtmlEditorField.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ ss.editorWrappers.tinyMCE = (function() {
getConfig: function() {
var selector = "#" + editorID,
config = jQuery(selector).data('config'),
height = config.row_height ? config.row_height : 'undefined',
height = config.row_height ? config.row_height : undefined,
self = this;

// Add instance specific data to config
Expand Down

0 comments on commit bcc1ccf

Please sign in to comment.