File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
src/components/common/DeploymentTypeIcon Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,11 @@ const VirtualEnvHelpTippy = importComponentFromFELibrary('VirtualEnvHelpTippy')
88
99function DeploymentTypeIcon ( { deploymentAppType } : { deploymentAppType : string } ) : JSX . Element {
1010 const renderDeploymentTypeIcon = ( ) => {
11- if ( deploymentAppType === DeploymentAppTypes . MANIFEST_DOWNLOAD || deploymentAppType === DeploymentAppTypes . MANIFEST_PUSH && VirtualEnvHelpTippy ) {
11+ if (
12+ ( deploymentAppType === DeploymentAppTypes . MANIFEST_DOWNLOAD ||
13+ deploymentAppType === DeploymentAppTypes . MANIFEST_PUSH ) &&
14+ VirtualEnvHelpTippy
15+ ) {
1216 return < VirtualEnvHelpTippy isVirtualIcon = { true } />
1317 } else if ( deploymentAppType === DeploymentAppTypes . GITOPS ) {
1418 return < ArgoCD data-testid = "argo-cd-app-logo" className = "icon-dim-32 ml-16" />
You can’t perform that action at this time.
0 commit comments