Skip to content

Commit a37e69c

Browse files
authored
Merge pull request #1359 from manodyaSenevirathne/patch-17073-public
Fix gateway notification condition(deployement status) to exclude platform gateway
2 parents 449df69 + e3ac628 commit a37e69c

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

  • portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Environments

portals/publisher/src/main/webapp/source/src/app/components/Apis/Details/Environments/Environments.jsx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3439,7 +3439,8 @@ export default function Environments() {
34393439
</IconButton>
34403440
</Tooltip>
34413441
</TableCell>
3442-
{settings.isGatewayNotificationEnabled && (
3442+
{settings.isGatewayNotificationEnabled
3443+
&& !api.initiatedFromGateway && (
34433444
<TableCell align='justify'>
34443445
<FormattedMessage
34453446
id='Apis.Details.Environments.Environments.gateway.deployment.status'
@@ -3591,7 +3592,8 @@ export default function Environments() {
35913592
EnvDeployments={allEnvDeployments[row.name]}
35923593
/>
35933594
</TableCell>
3594-
{settings.isGatewayNotificationEnabled && (
3595+
{settings.isGatewayNotificationEnabled
3596+
&& !api.initiatedFromGateway && (
35953597
<TableCell align='justify'>
35963598
{envDeploymentStatusComponent(row, allEnvDeployments)}
35973599
</TableCell>

0 commit comments

Comments
 (0)