mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-12 09:27:01 +00:00
fix: #1061
This commit is contained in:
parent
4fc2a7acfa
commit
1137b50b8a
1 changed files with 2 additions and 7 deletions
|
@ -860,13 +860,8 @@ class _NodeFormState extends ConsumerState<NodeForm> {
|
|||
onChanged?.call(canSave, canTestConnection);
|
||||
ref.read(nodeFormDataProvider).name = _nameController.text;
|
||||
ref.read(nodeFormDataProvider).host = _hostController.text;
|
||||
|
||||
ref.read(nodeFormDataProvider).login =
|
||||
_usernameController.text.isEmpty ? null : _usernameController.text;
|
||||
|
||||
ref.read(nodeFormDataProvider).password =
|
||||
_passwordController.text.isEmpty ? null : _passwordController.text;
|
||||
|
||||
ref.read(nodeFormDataProvider).login = _usernameController.text;
|
||||
ref.read(nodeFormDataProvider).password = _passwordController.text;
|
||||
ref.read(nodeFormDataProvider).port = port;
|
||||
ref.read(nodeFormDataProvider).useSSL = _useSSL;
|
||||
ref.read(nodeFormDataProvider).isFailover = _isFailover;
|
||||
|
|
Loading…
Reference in a new issue