Skip to content

Commit

Permalink
bug #5336 Removed forgotten console.log() statement (evertharmeling)
Browse files Browse the repository at this point in the history
This PR was merged into the 4.x branch.

Discussion
----------

Removed forgotten `console.log()` statement

<!--
Thanks for your contribution! If you are proposing a new feature that is complex,
please open an issue first so we can discuss about it.

Note: all your contributions adhere implicitly to the MIT license
-->

Commits
-------

fb37771 Removed forgotten `console.log()` statement
  • Loading branch information
javiereguiluz committed Jul 15, 2022
2 parents 03b868a + fb37771 commit 54141cc
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion assets/js/field-text-editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ class TextEditorField {
const trixEditorConfig = JSON.parse(trixContentElement.getAttribute('data-trix-editor-config'));
if (null !== trixEditorConfig) {
Trix.config = this.#mergeObjects(trixEditorConfig, Trix.config);
console.log(Trix.config);
}

const isTrixFieldRequired = 'required' === trixContentElement.getAttribute('required') ? 'true' : 'false';
Expand Down

0 comments on commit 54141cc

Please sign in to comment.