Kaynağa Gözat

Updates hiddenRefs migration

main
Keith Daulton 2 yıl önce
işlemeyi yapan: Keith Daulton
ebeveyn
işleme
168ccb8715
1 değiştirilmiş dosya ile 4 ekleme ve 3 silme
  1. +4
    -3
      src/plus/webviews/graph/graphWebview.ts

+ 4
- 3
src/plus/webviews/graph/graphWebview.ts Dosyayı Görüntüle

@ -1301,9 +1301,10 @@ export class GraphWebview extends WebviewBase {
for (const id in storedHiddenRefs) {
const repoPath = getRepoPathFromBranchOrTagId(id);
filtersByRepo[repoPath] = updateRecordValue(
filtersByRepo[repoPath]?.excludeRefs,
'excludeRefs',
filtersByRepo[repoPath] = filtersByRepo[repoPath] ?? {};
filtersByRepo[repoPath].excludeRefs = updateRecordValue(
filtersByRepo[repoPath].excludeRefs,
id,
storedHiddenRefs[id],
);
}

Yükleniyor…
İptal
Kaydet