Procházet zdrojové kódy

Fixes tree toggle labelling on commit details

main
Keith Daulton před 2 roky
rodič
revize
2f84662954
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. +2
    -2
      src/webviews/apps/commitDetails/commitDetails.ts

+ 2
- 2
src/webviews/apps/commitDetails/commitDetails.ts Zobrazit soubor

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

Načítá se…
Zrušit
Uložit