diff --git a/src/renderer/components/+cluster-settings/components/install-feature.tsx b/src/renderer/components/+cluster-settings/components/install-feature.tsx index db4fd16173..8168191f72 100644 --- a/src/renderer/components/+cluster-settings/components/install-feature.tsx +++ b/src/renderer/components/+cluster-settings/components/install-feature.tsx @@ -17,11 +17,11 @@ export class InstallFeature extends React.Component { @observable loading = false; componentDidMount() { - disposeOnUnmount(this, [ + disposeOnUnmount(this, reaction(() => this.props.cluster.features[this.props.feature], () => { this.loading = false; }) - ]); + ); } getActionButtons() {