diff --git a/ui/src/admin/components/chronograf/AllUsersTableRow.tsx b/ui/src/admin/components/chronograf/AllUsersTableRow.tsx index 8ba7ed79ad..61013c54e4 100644 --- a/ui/src/admin/components/chronograf/AllUsersTableRow.tsx +++ b/ui/src/admin/components/chronograf/AllUsersTableRow.tsx @@ -49,16 +49,7 @@ interface Props { @ErrorHandling export default class AllUsersTableRow extends Component { public shouldComponentUpdate(nextProps) { - if ( - _.isEqual( - _.omit(nextProps.user, 'superAdmin'), - _.omit(this.props.user, 'superAdmin') - ) - ) { - return false - } - - return true + return !_.isEqual(nextProps.user, this.props.user) } public render() {