1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00

Rename AnsibleEnvironmentSelect to AnsibleSelect

- Update references to the component.
This commit is contained in:
kialam 2018-12-11 16:42:24 -05:00
parent 9c7d449a4d
commit 9627a73978
No known key found for this signature in database
GPG Key ID: 2D0E60E4B8C7EA0F
5 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
import React from 'react'; import React from 'react';
import { mount } from 'enzyme'; import { mount } from 'enzyme';
import AnsibleSelect from '../../src/components/AnsibleEnvironmentSelect'; import AnsibleSelect from '../../src/components/AnsibleSelect';
const mockData = ['foo', 'bar']; const mockData = ['foo', 'bar'];
describe('<AnsibleSelect />', () => { describe('<AnsibleSelect />', () => {

View File

@ -1,3 +0,0 @@
import AnsibleSelect from './AnsibleEnvironmentSelect';
export default AnsibleSelect;

View File

@ -0,0 +1,3 @@
import AnsibleSelect from './AnsibleSelect';
export default AnsibleSelect;

View File

@ -17,7 +17,7 @@ import {
import { API_ORGANIZATIONS, API_CONFIG } from '../../../endpoints'; import { API_ORGANIZATIONS, API_CONFIG } from '../../../endpoints';
import api from '../../../api'; import api from '../../../api';
import AnsibleSelect from '../../../components/AnsibleEnvironmentSelect' import AnsibleSelect from '../../../components/AnsibleSelect'
const { light } = PageSectionVariants; const { light } = PageSectionVariants;
class OrganizationAdd extends React.Component { class OrganizationAdd extends React.Component {