|
|
@@ -36,7 +36,7 @@ export default class AdminUserGroupDetailContainer extends Container {
|
|
|
|
|
|
childUserGroupRelations: [], // TODO 85062: fetch data on init (findRelationsByGroupIds) For child group list users
|
|
|
// relatedPages: [], // For page list
|
|
|
- isUserGroupUserModalOpen: false,
|
|
|
+ // isUserGroupUserModalOpen: false,
|
|
|
isAlsoMailSearched: false,
|
|
|
isAlsoNameSearched: false,
|
|
|
};
|
|
|
@@ -45,8 +45,8 @@ export default class AdminUserGroupDetailContainer extends Container {
|
|
|
|
|
|
this.switchIsAlsoMailSearched = this.switchIsAlsoMailSearched.bind(this);
|
|
|
this.switchIsAlsoNameSearched = this.switchIsAlsoNameSearched.bind(this);
|
|
|
- this.openUserGroupUserModal = this.openUserGroupUserModal.bind(this);
|
|
|
- this.closeUserGroupUserModal = this.closeUserGroupUserModal.bind(this);
|
|
|
+ // this.openUserGroupUserModal = this.openUserGroupUserModal.bind(this);
|
|
|
+ // this.closeUserGroupUserModal = this.closeUserGroupUserModal.bind(this);
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
@@ -71,22 +71,22 @@ export default class AdminUserGroupDetailContainer extends Container {
|
|
|
this.setState({ isAlsoNameSearched: !this.state.isAlsoNameSearched });
|
|
|
}
|
|
|
|
|
|
- /**
|
|
|
- * open a modal
|
|
|
- *
|
|
|
- * @memberOf AdminUserGroupDetailContainer
|
|
|
- */
|
|
|
- async openUserGroupUserModal() {
|
|
|
- await this.setState({ isUserGroupUserModalOpen: true });
|
|
|
- }
|
|
|
-
|
|
|
- /**
|
|
|
- * close a modal
|
|
|
- *
|
|
|
- * @memberOf AdminUserGroupDetailContainer
|
|
|
- */
|
|
|
- async closeUserGroupUserModal() {
|
|
|
- await this.setState({ isUserGroupUserModalOpen: false });
|
|
|
- }
|
|
|
+ // /**
|
|
|
+ // * open a modal
|
|
|
+ // *
|
|
|
+ // * @memberOf AdminUserGroupDetailContainer
|
|
|
+ // */
|
|
|
+ // async openUserGroupUserModal() {
|
|
|
+ // await this.setState({ isUserGroupUserModalOpen: true });
|
|
|
+ // }
|
|
|
+
|
|
|
+ // /**
|
|
|
+ // * close a modal
|
|
|
+ // *
|
|
|
+ // * @memberOf AdminUserGroupDetailContainer
|
|
|
+ // */
|
|
|
+ // async closeUserGroupUserModal() {
|
|
|
+ // await this.setState({ isUserGroupUserModalOpen: false });
|
|
|
+ // }
|
|
|
|
|
|
}
|