X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/65bdf250e5a09633e482bacd968666861643c150..599aa352ade599966cf2a4606a1e6a1776a0738d:/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 e9652433..d947eadf 100644 --- a/src/views-components/dialog-forms/create-ssh-key-dialog.ts +++ b/src/views-components/dialog-forms/create-ssh-key-dialog.ts @@ -4,9 +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, SshKeyCreateFormDialogData } from '~/store/auth/auth-action'; -import { DialogSshKeyCreate } from '~/views-components/dialog-create/dialog-ssh-key-create'; +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), @@ -16,4 +20,4 @@ export const CreateSshKeyDialog = compose( dispatch(createSshKey(data)); } }) -)(DialogSshKeyCreate); \ No newline at end of file +)(DialogSshKeyCreate);