render rerun message for detected commands with actions (#234747)

https://github.com/microsoft/vscode-copilot/issues/10751

fyi @joyceerhl this fixes an issue where detected commands weren't advertised as such
This commit is contained in:
Johannes Rieken
2024-11-27 12:12:16 +01:00
committed by GitHub
parent 2b1cfedf1e
commit 0401bcef46
4 changed files with 59 additions and 4 deletions

View File

@@ -106,7 +106,7 @@ export class InlineChatZoneWidget extends ZoneWidget {
revealFn ??= this._createZoneAndScrollRestoreFn(this.position);
const height = this._computeHeight();
this._relayout(height.linesValue);
revealFn();
revealFn?.();
revealFn = undefined;
}
}));