1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix opening of upgrade release tab

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
This commit is contained in:
Janne Savolainen 2022-02-01 08:20:27 +02:00
parent 4ec36a154d
commit ebadd96ca8
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A

View File

@ -136,8 +136,8 @@ export class NonInjectedUpgradeChart extends React.Component<Props & Dependencie
const { tabId, release, value, error, onChange, onError, upgrade, versions, version } = this; const { tabId, release, value, error, onChange, onError, upgrade, versions, version } = this;
const { className } = this.props; const { className } = this.props;
if (!release || this.props.upgradeChartTabStore.isReady(tabId) || !version) { if (!release || !this.props.upgradeChartTabStore.isReady(tabId) || !version) {
return <Spinner center/>; return <Spinner center />;
} }
const currentVersion = release.getVersion(); const currentVersion = release.getVersion();
const controlsAndInfo = ( const controlsAndInfo = (