diff --git a/src/pages/identity/containers/Project/actions/ManageUser.jsx b/src/pages/identity/containers/Project/actions/ManageUser.jsx index bd8f8824..d59813ad 100644 --- a/src/pages/identity/containers/Project/actions/ManageUser.jsx +++ b/src/pages/identity/containers/Project/actions/ManageUser.jsx @@ -130,6 +130,12 @@ export class ManageUser extends ModalAction { ]; } + onClickSelect = (e) => { + if (e && e.stopPropagation) { + e.stopPropagation(); + } + }; + renderSelect = (id) => { return ( { this.onSubChange(value, option, groupId); }} + onClick={this.onClickSelect} /> ); }; @@ -206,7 +213,6 @@ export class ManageUserGroup extends ModalAction { onChange: this.onChangeUserGroup, wrapperCol: this.wrapperCol, loading: this.userGroupStore.list.isLoading, - onRowRight: () => null, }, ]; } diff --git a/src/pages/identity/containers/User/actions/Create.jsx b/src/pages/identity/containers/User/actions/Create.jsx index 8dc5e899..1dde4333 100644 --- a/src/pages/identity/containers/User/actions/Create.jsx +++ b/src/pages/identity/containers/User/actions/Create.jsx @@ -161,6 +161,12 @@ export class Create extends FormAction { this.setState({ projectRoles }); }; + onClickSelect = (e) => { + if (e && e.stopPropagation) { + e.stopPropagation(); + } + }; + renderSelect = (projectId) => { return (