From: Stephen Smith Date: Mon, 2 Aug 2021 19:26:05 +0000 (-0400) Subject: 17690: Fix stray accidental copy+paste X-Git-Tag: 2.3.0~8^2~1 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/7bdf07a2661affc4f1496d73e27d16f6470e4e4a 17690: Fix stray accidental copy+paste Arvados-DCO-1.1-Signed-off-by: Stephen Smith --- 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; });