mirror of
https://fastgit.cc/github.com/sourcegit-scm/sourcegit
synced 2026-04-24 10:50:52 +08:00
fix: Show only my locks checkbox did not work anymore in the LFS Locks window (#1845)
This commit is contained in:
@@ -10,9 +10,9 @@ namespace SourceGit.ViewModels
|
||||
{
|
||||
public bool HasValidUserName
|
||||
{
|
||||
get;
|
||||
private set;
|
||||
} = false;
|
||||
get => _hasValidUsername;
|
||||
private set => SetProperty(ref _hasValidUsername, value);
|
||||
}
|
||||
|
||||
public bool IsLoading
|
||||
{
|
||||
@@ -99,5 +99,6 @@ namespace SourceGit.ViewModels
|
||||
private List<Models.LFSLock> _visibleLocks = [];
|
||||
private bool _showOnlyMyLocks = false;
|
||||
private string _userName;
|
||||
private bool _hasValidUsername;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user