|
|
|
@ -330,6 +330,7 @@ class Collaborators extends Component {
|
|
|
|
|
});
|
|
|
|
|
this.updatacomponentDiddata();
|
|
|
|
|
this.props.showNotification(response.data.message);
|
|
|
|
|
// window.location.reload();
|
|
|
|
|
}).catch((error) => {
|
|
|
|
|
console.log(error)
|
|
|
|
|
});
|
|
|
|
@ -530,7 +531,7 @@ class Collaborators extends Component {
|
|
|
|
|
{
|
|
|
|
|
Collaboratorslist.length === 0 ? "" : Collaboratorslist.map((item, key) => {
|
|
|
|
|
return (
|
|
|
|
|
<Radio key={key} style={radioStyle} value={item.user_id}
|
|
|
|
|
<Radio key={key} style={radioStyle} value={item.user_id} defaultChecked={false}
|
|
|
|
|
onClick={() => this.addadminredio(item.user_id)}>{item.name}</Radio>
|
|
|
|
|
)
|
|
|
|
|
})
|
|
|
|
|