Skip to content

Commit

Permalink
Merge pull request #160 from jacquesbh/hotfix/correct-js-about-disabl…
Browse files Browse the repository at this point in the history
…ed-elements

Add missing getter in object
  • Loading branch information
jacquesbh authored Aug 30, 2021
2 parents 2c65375 + ac7b058 commit 42e985c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions assets/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,10 @@ global.MonsieurBizRichEditorUiElement = class {
return this.config.findUiElementByCode(this.code);
}

get enabled() {
return this.uielement.enabled;
}

get title() {
return this.uielement.title;
}
Expand Down
Loading

0 comments on commit 42e985c

Please sign in to comment.