From 7bdf07a2661affc4f1496d73e27d16f6470e4e4a Mon Sep 17 00:00:00 2001 From: Stephen Smith Date: Mon, 2 Aug 2021 15:26:05 -0400 Subject: [PATCH] 17690: Fix stray accidental copy+paste Arvados-DCO-1.1-Signed-off-by: Stephen Smith --- src/views/ssh-key-panel/ssh-key-panel.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/ssh-key-panel/ssh-key-panel.tsx b/src/views/ssh-key-panel/ssh-key-panel.tsx index f2b7dd3c..0c86b364 100644 --- a/src/views/ssh-key-panel/ssh-key-panel.tsx +++ b/src/views/ssh-key-panel/ssh-key-panel.tsx @@ -10,7 +10,7 @@ import { openSshKeyContextMenu } from 'store/context-menu/context-menu-actions'; import { SshKeyPanelRoot, SshKeyPanelRootDataProps, SshKeyPanelRootActionProps } from 'views/ssh-key-panel/ssh-key-panel-root'; const mapStateToProps = (state: RootState): SshKeyPanelRootDataProps => { - const sshKeys = state.auth.sshKeys = state.auth.sshKeys.filter((key) => { + const sshKeys = state.auth.sshKeys.filter((key) => { return key.authorizedUserUuid == state.auth.user.uuid; }); -- 2.30.2