diff --git a/scm-ui/ui-webapp/src/repos/containers/Changesets.tsx b/scm-ui/ui-webapp/src/repos/containers/Changesets.tsx index eded15c8c5..98601e86c1 100644 --- a/scm-ui/ui-webapp/src/repos/containers/Changesets.tsx +++ b/scm-ui/ui-webapp/src/repos/containers/Changesets.tsx @@ -66,7 +66,9 @@ class Changesets extends React.Component { } shouldComponentUpdate(nextProps: Readonly): boolean { - return this.props.changesets !== nextProps.changesets; + return this.props.changesets !== nextProps.changesets || + this.props.loading !== nextProps.loading || + this.props.error !== nextProps.error; } render() {