Explorar el Código

Changes defaults on filter objects when getting graph state

main
Ramin Tadayon hace 2 años
padre
commit
2152d870e6
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 5B90E918AEBCE7A7
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. +3
    -3
      src/plus/webviews/graph/graphWebview.ts

+ 3
- 3
src/plus/webviews/graph/graphWebview.ts Ver fichero

@ -1610,9 +1610,9 @@ export class GraphWebview extends WebviewBase {
context: {
header: this.getColumnHeaderContext(columns),
},
excludeRefs: data != null ? this.getExcludedRefs(data) : undefined,
excludeTypes: this.getExcludedTypes(data),
includeOnlyRefs: data != null ? this.getIncludeOnlyRefs(data) : undefined,
excludeRefs: data != null ? this.getExcludedRefs(data) ?? {} : {},
excludeTypes: this.getExcludedTypes(data) ?? {},
includeOnlyRefs: data != null ? this.getIncludeOnlyRefs(data) ?? {} : {},
nonce: this.cspNonce,
workingTreeStats: getSettledValue(workingStatsResult) ?? { added: 0, deleted: 0, modified: 0 },
debugging: this.container.debugging,

Cargando…
Cancelar
Guardar