this commit adds ssh_key to users step
This commit is contained in:
parent
6a5871bf14
commit
4af4b56332
6 changed files with 62 additions and 1 deletions
|
|
@ -583,6 +583,9 @@ const getUsers = (state: RootState): User[] | undefined => {
|
|||
if (user.password !== '') {
|
||||
result.password = user.password;
|
||||
}
|
||||
if (user.ssh_key !== '') {
|
||||
result.ssh_key = user.ssh_key;
|
||||
}
|
||||
return result as User;
|
||||
});
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue