Added an error popup if username is empty on lfs locks

This commit is contained in:
Mat 2024-09-23 18:06:07 +02:00
parent 6e35ac9eb0
commit 62c006591a

View file

@ -47,7 +47,7 @@ namespace SourceGit.ViewModels
{ {
if (string.IsNullOrEmpty(_userName)) if (string.IsNullOrEmpty(_userName))
{ {
//todo: add an error popup App.RaiseException(_repo, "Username is empty");
return Locks; return Locks;
} }