Skip to content

Commit e9ee764

Browse files
committed
basic-ui: fix bug in VM property
Fix a bug in a view model property for the basic credentials prompt; we should be updating the backing field and also raising the PropertyChanged event.
1 parent 5593bd4 commit e9ee764

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/Core.UI/ViewModels/CredentialsViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public string Description
5656
public bool ShowProductHeader
5757
{
5858
get => _showProductHeader;
59-
set => _showProductHeader = value;
59+
set => SetAndRaisePropertyChanged(ref _showProductHeader, value);
6060
}
6161

6262
public RelayCommand SignInCommand

0 commit comments

Comments
 (0)