Explorar el Código

Fixes tree toggle labelling on commit details

main
Keith Daulton hace 2 años
padre
commit
2f84662954
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      src/webviews/apps/commitDetails/commitDetails.ts

+ 2
- 2
src/webviews/apps/commitDetails/commitDetails.ts Ver fichero

@ -336,8 +336,8 @@ export class CommitDetailsApp extends App> {
const $toggle = document.querySelector('[data-switch-value]');
if ($toggle) {
$toggle.setAttribute('data-switch-value', isTree ? 'list-tree' : 'list');
$toggle.setAttribute('icon', isTree ? 'list-tree' : 'list-flat');
$toggle.setAttribute('label', isTree ? 'View as Tree' : 'View as List');
$toggle.setAttribute('icon', isTree ? 'list-flat' : 'list-tree');
$toggle.setAttribute('label', isTree ? 'View as List' : 'View as Tree');
}
if (!state.selected.files?.length) {

Cargando…
Cancelar
Guardar