17782: Fixes absolute import paths from '~/somedir/...' to 'somedir/...'
[arvados-workbench2.git] / src / views-components / context-menu / actions / copy-to-clipboard-action.tsx
index 31ef4b9750b66ddcd8e80f2556b74d6fac463d60..8de3189a04aa0f4542ae74ad12a4d125a38de1d5 100644 (file)
@@ -5,7 +5,7 @@
 import * as React from "react";
 import * as copy from 'copy-to-clipboard';
 import { ListItemIcon, ListItemText, ListItem } from "@material-ui/core";
-import { Link } from "~/components/icon/icon";
+import { Link } from "components/icon/icon";
 import { getClipboardUrl } from "./helpers";
 
 export const CopyToClipboardAction = (props: { href?: any, download?: any, onClick?: () => void, kind?: string, currentCollectionUuid?: string; }) => {
@@ -27,7 +27,7 @@ export const CopyToClipboardAction = (props: { href?: any, download?: any, onCli
             </ListItemIcon>
             <ListItemText>
                 Copy to clipboard
-                </ListItemText>
+            </ListItemText>
         </ListItem>
         : null;
 };
\ No newline at end of file