File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
src/components/v2/devtronStackManager Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 17
17
import React , { useEffect } from 'react'
18
18
import AboutDevtron from '../../../assets/img/[email protected] '
19
19
import { InstallationWrapper } from './DevtronStackManager.component'
20
- import { AboutDevtronViewType , InstallationType } from './DevtronStackManager.type'
20
+ import { AboutDevtronViewType } from './DevtronStackManager.type'
21
21
import './AboutDevtronView.scss'
22
22
import { URLS } from '../../../config'
23
23
import { MarkDown , TabGroup } from '@devtron-labs/devtron-fe-common-lib'
Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ export default function DevtronStackManager({
107
107
_getDetailsForAllModules ( stackDetails . discoverModulesList , stackDetails )
108
108
_getLogPodName ( )
109
109
} ,
110
- serverInfo ?. installationType === InstallationType . OSS_KUBECTL ? null : 30000 ,
110
+ serverInfo ?. installationType === InstallationType . OSS_KUBECTL ? null : 30000 ,
111
111
)
112
112
113
113
/**
@@ -561,7 +561,10 @@ export default function DevtronStackManager({
561
561
newVersion = { stackDetails . releaseNotes [ 0 ] ?. releaseName }
562
562
handleTabChange = { handleTabChange }
563
563
showInitializing = { ! logPodName && serverMode === SERVER_MODE . FULL }
564
- showVersionInfo = { ! ! serverInfo ?. currentVersion }
564
+ showVersionInfo = {
565
+ ! ! serverInfo ?. currentVersion &&
566
+ serverInfo . installationType !== InstallationType . OSS_KUBECTL
567
+ }
565
568
/>
566
569
</ section >
567
570
) }
You can’t perform that action at this time.
0 commit comments