瀏覽代碼

Resets explain commit when switching commits

main
Keith Daulton 1 年之前
父節點
當前提交
c6b39e8f56
共有 1 個檔案被更改,包括 10 行新增0 行删除
  1. +10
    -0
      src/webviews/apps/commitDetails/commitDetails.ts

+ 10
- 0
src/webviews/apps/commitDetails/commitDetails.ts 查看文件

@ -300,6 +300,16 @@ export class CommitDetailsApp extends App> {
// if (this.state.includeRichContent) {
this.renderPullRequestAndAutolinks(this.state);
// }
this.resetExplainCommit();
}
resetExplainCommit() {
const $explainPanel = document.querySelector('[data-region="explain-pane"]')!;
$explainPanel.removeAttribute('expanded');
$explainPanel.querySelector('button')!.removeAttribute('aria-busy');
const $explanation = $explainPanel.querySelector('[data-region="commit-explanation"]')!;
$explanation.classList.remove('has-error');
$explanation.innerHTML = '';
}
renderBanner(state: CommitState, target?: HTMLElement) {

Loading…
取消
儲存