From c96dfd101c7473247a1de37accdf440ab1aadc1e Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Wed, 7 Aug 2019 08:06:45 -0400 Subject: [PATCH] use alias for type import --- awx/ui_next/src/screens/Template/shared/InventoriesLookup.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui_next/src/screens/Template/shared/InventoriesLookup.jsx b/awx/ui_next/src/screens/Template/shared/InventoriesLookup.jsx index a3d03b81eb..3bef9f782a 100644 --- a/awx/ui_next/src/screens/Template/shared/InventoriesLookup.jsx +++ b/awx/ui_next/src/screens/Template/shared/InventoriesLookup.jsx @@ -6,8 +6,8 @@ import { FormGroup, Tooltip } from '@patternfly/react-core'; import { QuestionCircleIcon } from '@patternfly/react-icons'; import { InventoriesAPI } from '@api'; +import { Inventory } from '@types'; import Lookup from '@components/Lookup'; -import { Inventory } from '../../../types'; const getInventories = async params => InventoriesAPI.read(params);