mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-08 20:09:24 +00:00
[skip ci] minor fix
This commit is contained in:
parent
1ff4b9bf88
commit
ca638ebd71
1 changed files with 2 additions and 2 deletions
|
@ -22,8 +22,8 @@ class NodeForm extends StatelessWidget {
|
|||
nodeViewModel
|
||||
..setAddress((editingNode!.uri.host.toString()))
|
||||
..setPort((editingNode!.uri.port.toString()))
|
||||
..setPassword((editingNode?.password ?? ''))
|
||||
..setLogin((editingNode?.login ?? ''))
|
||||
..setPassword((editingNode!.password ?? ''))
|
||||
..setLogin((editingNode!.login ?? ''))
|
||||
..setSSL((editingNode!.isSSL))
|
||||
..setTrusted((editingNode!.trusted));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue