X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f26a160eb9a476f1d5037d899e0636cf150fb573..refs/heads/19865-search-clearing-fix:/src/store/tree-picker/tree-picker.ts diff --git a/src/store/tree-picker/tree-picker.ts b/src/store/tree-picker/tree-picker.ts index a4127fa3..22e445a8 100644 --- a/src/store/tree-picker/tree-picker.ts +++ b/src/store/tree-picker/tree-picker.ts @@ -2,8 +2,8 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { Tree } from "~/models/tree"; -import { TreeItemStatus } from '~/components/tree/tree'; +import { Tree } from "models/tree"; +import { TreeItemStatus } from 'components/tree/tree'; export type TreePicker = { [key: string]: Tree }; export const getTreePicker = (id: string) => (state: TreePicker): Tree | undefined => state[id];