Skip to content

Commit

Permalink
refactor && rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
marker dao ® committed Sep 6, 2024
1 parent 332595f commit 63cd3fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/devextreme/js/__internal/ui/chat/chat_message_box.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ class MessageBox extends DOMComponent<MessageBox, Properties> {
autoResizeEnabled: true,
maxHeight: '20em',
onInput: (): void => {
const isButtonDisabled = !this._isValuableTextEntered();
const shouldButtonBeDisabled = !this._isValuableTextEntered();

this._toggleButtonDisableState(isButtonDisabled);
this._toggleButtonDisableState(shouldButtonBeDisabled);
},
});
}
Expand Down

0 comments on commit 63cd3fc

Please sign in to comment.