Ver código fonte

Adds baseRef optional chain to isHidden

main
Keith Daulton 1 ano atrás
pai
commit
5b0d883d3a
1 arquivos alterados com 1 adições e 1 exclusões
  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 Ver arquivo

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

Carregando…
Cancelar
Salvar