Skip to content

Commit

Permalink
fix #214797
Browse files Browse the repository at this point in the history
  • Loading branch information
meganrogge committed Jul 31, 2024
1 parent 284a605 commit 02d4ed5
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,6 @@ export class TerminalChatWidget extends Disposable {
this._container.classList.add('hide');
this._inlineChatWidget.reset();
this._reset();
this._inlineChatWidget.updateChatMessage(undefined);
this._inlineChatWidget.updateToolbar(false);
this._visibleContextKey.set(false);
this._inlineChatWidget.value = '';
Expand Down Expand Up @@ -231,12 +230,6 @@ export class TerminalChatWidget extends Disposable {
input(): string {
return this._inlineChatWidget.value;
}
addToHistory(input: string): void {
this._inlineChatWidget.addToHistory(input);
this._inlineChatWidget.saveState();
this._inlineChatWidget.value = input;
this._inlineChatWidget.selectAll(true);
}
setValue(value?: string) {
this._inlineChatWidget.value = value ?? '';
}
Expand Down

0 comments on commit 02d4ed5

Please sign in to comment.