mirror of
https://github.com/ansible/awx.git
synced 2026-05-10 02:47:36 -02:30
fix merge conflicts
This commit is contained in:
@@ -62,8 +62,7 @@ class OrganizationsList extends Component {
|
|||||||
loading: true,
|
loading: true,
|
||||||
results: [],
|
results: [],
|
||||||
selected: [],
|
selected: [],
|
||||||
isModalOpen: false
|
isModalOpen: false,
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
this.onSearch = this.onSearch.bind(this);
|
this.onSearch = this.onSearch.bind(this);
|
||||||
@@ -77,7 +76,7 @@ class OrganizationsList extends Component {
|
|||||||
this.fetchOrganizations = this.fetchOrganizations.bind(this);
|
this.fetchOrganizations = this.fetchOrganizations.bind(this);
|
||||||
this.handleOrgDelete = this.handleOrgDelete.bind(this);
|
this.handleOrgDelete = this.handleOrgDelete.bind(this);
|
||||||
this.handleOpenOrgDeleteModal = this.handleOpenOrgDeleteModal.bind(this);
|
this.handleOpenOrgDeleteModal = this.handleOpenOrgDeleteModal.bind(this);
|
||||||
this.handleCloseOrgDeleteModal = this.handleCloseOrgDeleteModal.bind(this);
|
this.handleClearOrgDeleteModal = this.handleClearOrgDeleteModal.bind(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
componentDidMount () {
|
componentDidMount () {
|
||||||
@@ -144,9 +143,10 @@ class OrganizationsList extends Component {
|
|||||||
return Object.assign({}, DEFAULT_PARAMS, searchParams, overrides);
|
return Object.assign({}, DEFAULT_PARAMS, searchParams, overrides);
|
||||||
}
|
}
|
||||||
|
|
||||||
handleCloseOrgDeleteModal () {
|
handleClearOrgDeleteModal () {
|
||||||
this.setState({
|
this.setState({
|
||||||
isModalOpen: false
|
isModalOpen: false,
|
||||||
|
selected: []
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user