Skip to content

Commit

Permalink
Revert "Исправлена ошибка открытия проекта на GitHub"
Browse files Browse the repository at this point in the history
This reverts commit 30ee0da.
  • Loading branch information
TTLC198 committed Dec 4, 2023
1 parent 30ee0da commit 3ec1798
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion HSMonitor/Views/Settings/UpdateSettingsTabView.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ public UpdateSettingsTabView()

private void GithubLinkPageOpen(object sender, MouseButtonEventArgs e)
{
OpenUrl.Open(App.GitHubProjectUrl);
if (sender is Grid {Name: "GithubClientUrlGrid"})
OpenUrl.Open(App.GitHubClientProjectUrl);
if (sender is Grid {Name: "GithubUrlGrid"})
OpenUrl.Open(App.GitHubProjectUrl);
}
}

0 comments on commit 3ec1798

Please sign in to comment.