Skip to content

Commit 4a41603

Browse files
committed
refactor
1 parent bc75487 commit 4a41603

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

extension/chrome/elements/compose-modules/compose-input-module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export class ComposeInputModule extends ViewModule<ComposeView> {
3636
}
3737

3838
public setHandlers = () => {
39-
this.toggleRichTextFormatting();
39+
this.configureRichTextFormatting();
4040
this.view.S.cached('add_intro').on(
4141
'click',
4242
this.view.setHandler(el => this.actionAddIntroHandler(el), this.view.errModule.handle(`add intro`))
@@ -105,7 +105,7 @@ export class ComposeInputModule extends ViewModule<ComposeView> {
105105
return isInputLimitExceeded;
106106
};
107107

108-
private toggleRichTextFormatting = () => {
108+
private configureRichTextFormatting = () => {
109109
if (this.isRichText()) {
110110
this.addRichTextFormatting();
111111
} else {

0 commit comments

Comments
 (0)