Skip to content

Commit

Permalink
remove logs and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
gbanu committed Feb 15, 2025
1 parent a293ed2 commit 8940400
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// deployment-state-tag.component.ts
import { Component, computed, input } from '@angular/core';
import { TagModule } from 'primeng/tag';
import { IconsModule } from 'icons.module';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ export class ReleaseCandidateDeploymentTableComponent {

deploymentStatus = (environment: EnvironmentDto) => {
let deployments = this.releaseCandidate().deployments.filter(deployment => deployment.environment.id === environment.id);
console.log('DEPLOYMENTS', deployments.length > 0 ? JSON.stringify(deployments.length) : 'NO DEPLOYMENTS');
// If there are no deployments related to this release candidate anymore, this release candidate was not deployed yet
if (deployments.length === 0) {
return 'NEVER_DEPLOYED';
Expand Down

0 comments on commit 8940400

Please sign in to comment.