Explorar el Código

Adds baseRef optional chain to isHidden

main
Keith Daulton hace 1 año
padre
commit
5b0d883d3a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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 fichero

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

Cargando…
Cancelar
Guardar