[pve-devel] [PATCH proxmox_login_manager v2] fix #6231: Removed whitespace-trimming from password entry field
Alexander Abraham
a.abraham at proxmox.com
Wed Apr 30 18:25:07 CEST 2025
The whitespace-trimming was removed for the password field
in the login form to allow users to also use spaces in their
passwordsThe whitespace-trimming was removed for the password field
in the login form to allow users to also use spaces in their
passwords.
Signed-off-by: Alexander Abraham <a.abraham at proxmox.com>
---
lib/proxmox_login_form.dart | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/proxmox_login_form.dart b/lib/proxmox_login_form.dart
index 735bd42..5916563 100644
--- a/lib/proxmox_login_form.dart
+++ b/lib/proxmox_login_form.dart
@@ -464,7 +464,7 @@ class _ProxmoxLoginPageState extends State<ProxmoxLoginPage> {
//cleaned form fields
final origin = normalizeUrl(_originController.text.trim());
final username = _usernameController.text.trim();
- final String enteredPassword = _passwordController.text.trim();
+ final String enteredPassword = _passwordController.text;
final String? savedPassword = widget.password;
final password = ticket.isNotEmpty ? ticket : enteredPassword;
--
2.39.5
More information about the pve-devel
mailing list