Skip to content

Commit

Permalink
fix: reset height after send (#7755)
Browse files Browse the repository at this point in the history
  • Loading branch information
darkskygit committed Aug 6, 2024
1 parent de7933c commit f93743d
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,7 @@ export class ChatPanelInput extends WithDisposable(LitElement) {
const { doc } = this.host;
this.textarea.value = '';
this.isInputEmpty = true;
this.textarea.style.height = 'unset';
this.updateContext({
images: [],
status: 'loading',
Expand Down

0 comments on commit f93743d

Please sign in to comment.