X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f83344568cb070f716527288abe88a4ec5b0c305..7bdf07a2661affc4f1496d73e27d16f6470e4e4a:/src/views/ssh-key-panel/ssh-key-panel.tsx diff --git a/src/views/ssh-key-panel/ssh-key-panel.tsx b/src/views/ssh-key-panel/ssh-key-panel.tsx index 4e800296..0c86b364 100644 --- a/src/views/ssh-key-panel/ssh-key-panel.tsx +++ b/src/views/ssh-key-panel/ssh-key-panel.tsx @@ -2,17 +2,21 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { RootState } from '~/store/store'; +import { RootState } from 'store/store'; import { Dispatch } from 'redux'; import { connect } from 'react-redux'; -import { openSshKeyCreateDialog, openPublicKeyDialog } from '~/store/auth/auth-action'; -import { openSshKeyContextMenu } from '~/store/context-menu/context-menu-actions'; -import { SshKeyPanelRoot, SshKeyPanelRootDataProps, SshKeyPanelRootActionProps } from '~/views/ssh-key-panel/ssh-key-panel-root'; +import { openSshKeyCreateDialog, openPublicKeyDialog } from 'store/auth/auth-action-ssh'; +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.filter((key) => { + return key.authorizedUserUuid == state.auth.user.uuid; + }); + return { - sshKeys: state.auth.sshKeys, - hasKeys: state.auth.sshKeys!.length > 0 + sshKeys: sshKeys, + hasKeys: sshKeys!.length > 0 }; }; @@ -28,4 +32,4 @@ const mapDispatchToProps = (dispatch: Dispatch): SshKeyPanelRootActionProps => ( } }); -export const SshKeyPanel = connect(mapStateToProps, mapDispatchToProps)(SshKeyPanelRoot); \ No newline at end of file +export const SshKeyPanel = connect(mapStateToProps, mapDispatchToProps)(SshKeyPanelRoot);