Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #1280: When switching dashboard, similar box should be refreshed #1283

Merged
merged 7 commits into from
Sep 10, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix cannot remove user presence box bug
  • Loading branch information
Pierre-Gilles committed Sep 10, 2021
commit 51c162d73410a1e905b6f64b621d9c19789ff87d
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,13 @@ class EditUserPresence extends Component {

render(props, { users, selectedUsers, loading }) {
return (
<UserPresenceBox users={users} selectedUsers={selectedUsers} loading={loading} updateUsers={this.updateUsers} />
<UserPresenceBox
{...props}
users={users}
selectedUsers={selectedUsers}
loading={loading}
updateUsers={this.updateUsers}
/>
);
}
}
Expand Down