this commit adds ssh_key to users step

This commit is contained in:
regexowl 2025-01-02 09:55:22 +01:00 committed by Klara Simickova
parent 6a5871bf14
commit 4af4b56332
6 changed files with 62 additions and 1 deletions

View file

@ -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;
});
};