We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
HasValidUserName
SetProperty
1 parent 501aae9 commit 4f07ba4Copy full SHA for 4f07ba4
1 file changed
src/ViewModels/LFSLocks.cs
@@ -10,9 +10,9 @@ public class LFSLocks : ObservableObject
10
{
11
public bool HasValidUserName
12
13
- get;
14
- private set;
15
- } = false;
+ get => _hasValidUsername;
+ private set => SetProperty(ref _hasValidUsername, value);
+ }
16
17
public bool IsLoading
18
@@ -99,5 +99,6 @@ private void UpdateVisibleLocks()
99
private List<Models.LFSLock> _visibleLocks = [];
100
private bool _showOnlyMyLocks = false;
101
private string _userName;
102
+ private bool _hasValidUsername;
103
}
104
0 commit comments