mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-14 09:25:43 +01:00
Fix loading spinner not showing in changesets
This commit is contained in:
@@ -66,7 +66,9 @@ class Changesets extends React.Component<Props> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
shouldComponentUpdate(nextProps: Readonly<Props>): boolean {
|
shouldComponentUpdate(nextProps: Readonly<Props>): boolean {
|
||||||
return this.props.changesets !== nextProps.changesets;
|
return this.props.changesets !== nextProps.changesets ||
|
||||||
|
this.props.loading !== nextProps.loading ||
|
||||||
|
this.props.error !== nextProps.error;
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
|
|||||||
Reference in New Issue
Block a user