Skip to content

Commit

Permalink
Fix missing URLs in add repo popup
Browse files Browse the repository at this point in the history
  • Loading branch information
HebaruSan committed Sep 23, 2024
1 parent 4a4008d commit 93b1498
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion GUI/Dialogs/NewRepoDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ private void NewRepoDialog_Load(object? sender, EventArgs? e)
{
ReposListBox.Items.Clear();
ReposListBox.Items.AddRange(
repos.Select(r => new ListViewItem(r.name, r.uri.ToString())
repos.Select(r => new ListViewItem(new string[] { r.name,
r.uri.ToString() })
{
Tag = r
})
Expand Down

0 comments on commit 93b1498

Please sign in to comment.