19079: Add search results context menu with clipboard and new tab options
[arvados-workbench2.git] / src / views-components / dialog-forms / create-ssh-key-dialog.ts
index e96524338dd626bd333b3f3d6afd93dc91e85335..d947eadf16355b6c79b6ead6062b056f5bc90ae3 100644 (file)
@@ -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);