X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/6ad3586e61737306f61a330eca545ca494f16304..618af1a3106c399765788be4583463ab35d97cd5:/src/views-components/form-fields/resource-form-fields.tsx diff --git a/src/views-components/form-fields/resource-form-fields.tsx b/src/views-components/form-fields/resource-form-fields.tsx index 0c4ae64a..f2bb97f4 100644 --- a/src/views-components/form-fields/resource-form-fields.tsx +++ b/src/views-components/form-fields/resource-form-fields.tsx @@ -2,14 +2,14 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from "react"; +import React from "react"; import { connect } from "react-redux"; -import { RootState } from "~/store/store"; +import { RootState } from "store/store"; import { Field } from "redux-form"; -import { ResourcesState, getResource } from "~/store/resources/resources"; -import { GroupResource } from "~/models/group"; -import { TextField } from "~/components/text-field/text-field"; -import { getUserUuid } from "~/common/getuser"; +import { ResourcesState, getResource } from "store/resources/resources"; +import { GroupResource } from "models/group"; +import { TextField } from "components/text-field/text-field"; +import { getUserUuid } from "common/getuser"; interface ResourceParentFieldProps { resources: ResourcesState; @@ -24,7 +24,7 @@ export const ResourceParentField = connect( }; }) ((props: ResourceParentFieldProps) => - + component={TextField as any} /> );