Browse Source

(parentheses)

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

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

@ -449,7 +449,8 @@ function formatRemotes(
name: r.name,
url: r.url,
avatarUrl:
r.provider?.avatarUri?.toString(true) ?? r.provider?.icon != null ? getIconUrl(r.provider.icon) : undefined,
r.provider?.avatarUri?.toString(true) ??
(r.provider?.icon != null ? getIconUrl(r.provider.icon) : undefined),
}));
}

Loading…
Cancel
Save