diff --git a/src/KeyKeeper/Views/EntryEditWindow.axaml.cs b/src/KeyKeeper/Views/EntryEditWindow.axaml.cs index d0017e0..1abe7ee 100644 --- a/src/KeyKeeper/Views/EntryEditWindow.axaml.cs +++ b/src/KeyKeeper/Views/EntryEditWindow.axaml.cs @@ -25,7 +25,7 @@ public partial class EntryEditWindow: Window username = username.Trim(); if (username.Length == 0) return; - string password = UsernameEdit.Text ?? ""; + string password = PasswordEdit.Text ?? ""; password = password.Trim(); if (password.Length == 0) return;