Skip to content

Commit 3f09e2b

Browse files
Fix SetPasswordCommand message (#2846)
1 parent cb77263 commit 3f09e2b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MainDemo.Wpf/Domain/FieldsViewModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,8 @@ public string? Password2Validated
7676

7777
public FieldsViewModel()
7878
{
79-
SetPassword1FromViewModelCommand = new AnotherCommandImplementation(_ => Password1 = "Set from code-behind!");
80-
SetPassword2FromViewModelCommand = new AnotherCommandImplementation(_ => Password2 = "Set from code-behind!");
79+
SetPassword1FromViewModelCommand = new AnotherCommandImplementation(_ => Password1 = "Set from ViewModel!");
80+
SetPassword2FromViewModelCommand = new AnotherCommandImplementation(_ => Password2 = "Set from ViewModel!");
8181
}
8282
}
8383

0 commit comments

Comments
 (0)