Explorar el Código

Fixes file hiding when clicked in Commit Details

main
Keith Daulton hace 2 años
padre
commit
8995698907
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      src/webviews/apps/shared/components/list/list-item.ts

+ 3
- 1
src/webviews/apps/shared/components/list/list-item.ts Ver fichero

@ -208,7 +208,9 @@ export class ListItem extends FASTElement {
select(_showOptions?: TextDocumentShowOptions, quiet = false) {
// TODO: this needs to be implemented
this.expanded = !this.expanded;
if (this.branch) {
this.expanded = !this.expanded;
}
this.active = true;
if (!quiet) {
window.requestAnimationFrame(() => {

||||||
x
 
000:0
Cargando…
Cancelar
Guardar