X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/27cb820f897c08448f7495c57a8f2fc9cadaa2b4..9f472b932176e09be950115feab148da3be5c321:/src/views-components/context-menu/actions/favorite-action.tsx diff --git a/src/views-components/context-menu/actions/favorite-action.tsx b/src/views-components/context-menu/actions/favorite-action.tsx index 06e3b5ef..1e817ba3 100644 --- a/src/views-components/context-menu/actions/favorite-action.tsx +++ b/src/views-components/context-menu/actions/favorite-action.tsx @@ -4,9 +4,9 @@ import * as React from "react"; import { ListItemIcon, ListItemText, ListItem } from "@material-ui/core"; -import { AddFavoriteIcon, RemoveFavoriteIcon } from "../../../components/icon/icon"; +import { AddFavoriteIcon, RemoveFavoriteIcon } from "~/components/icon/icon"; import { connect } from "react-redux"; -import { RootState } from "../../../store/store"; +import { RootState } from "~/store/store"; const mapStateToProps = (state: RootState, props: { onClick: () => {} }) => ({ isFavorite: state.contextMenu.resource !== undefined && state.favorites[state.contextMenu.resource.uuid] === true,