Browse Source

Changes defaults on filter objects when getting graph state

main
Ramin Tadayon 2 years ago
parent
commit
2152d870e6
No known key found for this signature in database GPG Key ID: 5B90E918AEBCE7A7
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/plus/webviews/graph/graphWebview.ts

+ 3
- 3
src/plus/webviews/graph/graphWebview.ts View File

@ -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,

Loading…
Cancel
Save