Sfoglia il codice sorgente

Adds baseRef optional chain to isHidden

main
Keith Daulton 1 anno fa
parent
commit
5b0d883d3a
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      src/webviews/apps/shared/components/list/file-change-list-item.ts

+ 1
- 1
src/webviews/apps/shared/components/list/file-change-list-item.ts Vedi File

@ -105,7 +105,7 @@ export class FileChangeListItem extends LitElement {
@state()
get isHidden() {
return this.baseRef.isHidden ?? 'false';
return this.baseRef?.isHidden ?? 'false';
}
@state()

Caricamento…
Annulla
Salva