File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
src/components/v2/devtronStackManager Expand file tree Collapse file tree 1 file changed +4
-2
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 } from './DevtronStackManager.type'
20
+ import { AboutDevtronViewType , InstallationType } 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'
@@ -118,7 +118,9 @@ const AboutDevtronView = ({
118
118
< div className = "about-devtron__details" >
119
119
< h2 className = "about-devtron__view-heading cn-9 fs-20 fw-6" >
120
120
Devtron
121
- { serverInfo ?. currentVersion && < span > ({ serverInfo . currentVersion . toLowerCase ( ) } )</ span > }
121
+ { serverInfo ?. currentVersion && serverInfo . installationType !== InstallationType . OSS_KUBECTL && (
122
+ < span > ({ serverInfo . currentVersion . toLowerCase ( ) } )</ span >
123
+ ) }
122
124
</ h2 >
123
125
< div className = "about-devtron__view-tabs w-100" >
124
126
{ renderTabs ( ) }
You can’t perform that action at this time.
0 commit comments