mirror of
https://github.com/ansible/awx.git
synced 2026-02-19 12:10:06 -03:30
workaround import/dependency bug in tests
This commit is contained in:
@@ -3,4 +3,8 @@ export { default as Detail, DetailName, DetailValue } from './Detail';
|
|||||||
export { default as DeletedDetail } from './DeletedDetail';
|
export { default as DeletedDetail } from './DeletedDetail';
|
||||||
export { default as UserDateDetail } from './UserDateDetail';
|
export { default as UserDateDetail } from './UserDateDetail';
|
||||||
export { default as DetailBadge } from './DetailBadge';
|
export { default as DetailBadge } from './DetailBadge';
|
||||||
export { default as ObjectDetail } from './ObjectDetail';
|
/*
|
||||||
|
NOTE: ObjectDetail cannot be imported here, as it causes circular
|
||||||
|
dependencies in testing environment. Import it directly from
|
||||||
|
DetailList/ObjectDetail
|
||||||
|
*/
|
||||||
|
|||||||
@@ -9,8 +9,8 @@ import {
|
|||||||
Detail,
|
Detail,
|
||||||
DetailList,
|
DetailList,
|
||||||
DeletedDetail,
|
DeletedDetail,
|
||||||
ObjectDetail,
|
|
||||||
} from '../../../components/DetailList';
|
} from '../../../components/DetailList';
|
||||||
|
import ObjectDetail from '../../../components/DetailList/ObjectDetail';
|
||||||
import DeleteButton from '../../../components/DeleteButton';
|
import DeleteButton from '../../../components/DeleteButton';
|
||||||
import ErrorDetail from '../../../components/ErrorDetail';
|
import ErrorDetail from '../../../components/ErrorDetail';
|
||||||
import { NotificationTemplatesAPI } from '../../../api';
|
import { NotificationTemplatesAPI } from '../../../api';
|
||||||
|
|||||||
Reference in New Issue
Block a user