Explorar el Código

Resets explain commit when switching commits

main
Keith Daulton hace 1 año
padre
commit
c6b39e8f56
Se han modificado 1 ficheros con 10 adiciones y 0 borrados
  1. +10
    -0
      src/webviews/apps/commitDetails/commitDetails.ts

+ 10
- 0
src/webviews/apps/commitDetails/commitDetails.ts Ver fichero

@ -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) {

Cargando…
Cancelar
Guardar