X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/62ff5a943865229c1630c66366f824511048ce63..1277b2a092fbd057220ee43d6fc47bffff5933d1:/src/views-components/dialog-forms/create-ssh-key-dialog.ts diff --git a/src/views-components/dialog-forms/create-ssh-key-dialog.ts b/src/views-components/dialog-forms/create-ssh-key-dialog.ts index bc436d91cf..d947eadf16 100644 --- a/src/views-components/dialog-forms/create-ssh-key-dialog.ts +++ b/src/views-components/dialog-forms/create-ssh-key-dialog.ts @@ -4,10 +4,13 @@ import { compose } from "redux"; import { reduxForm } from 'redux-form'; -import { withDialog } from "~/store/dialog/with-dialog"; -import { SSH_KEY_CREATE_FORM_NAME, createSshKey } from '~/store/auth/auth-action'; -import { DialogSshKeyCreate } from '~/views-components/dialog-create/dialog-ssh-key-create'; -import { SshKeyCreateFormDialogData } from '~/models/ssh-key'; +import { withDialog } from "store/dialog/with-dialog"; +import { + SSH_KEY_CREATE_FORM_NAME, + createSshKey, + SshKeyCreateFormDialogData +} from 'store/auth/auth-action-ssh'; +import { DialogSshKeyCreate } from 'views-components/dialog-create/dialog-ssh-key-create'; export const CreateSshKeyDialog = compose( withDialog(SSH_KEY_CREATE_FORM_NAME), @@ -17,4 +20,4 @@ export const CreateSshKeyDialog = compose( dispatch(createSshKey(data)); } }) -)(DialogSshKeyCreate); \ No newline at end of file +)(DialogSshKeyCreate);