We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
BranchTreeNodes
1 parent 0e61a01 commit 5b72b15Copy full SHA for 5b72b15
src/ViewModels/BranchTreeNode.cs
@@ -56,7 +56,8 @@ public string BranchesCount
56
57
public string Tooltip
58
{
59
- get => Backend is Models.Branch b ? b.FriendlyName : null;
+ get => Backend is Models.Branch b ?
60
+ b.FriendlyName : (Backend is Models.Remote r ? r.URL : null);
61
}
62
63
private Models.FilterMode _filterMode = Models.FilterMode.None;
0 commit comments