Skip to content

Commit

Permalink
Delete ObservabilityClusterCard.data.healthy
Browse files Browse the repository at this point in the history
  • Loading branch information
owanturist committed Nov 7, 2024
1 parent 1dbe33f commit c407b25
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions pkg/observability/components/ObservabilityClusterCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ export default {
countDeviating() {
return this.deviating;
},
countHealthy() {
return this.healthy;
},
countCritical() {
return this.critical;
},
Expand All @@ -55,7 +52,6 @@ export default {
snapshot: undefined,
deviating: 0,
critical: 0,
healthy: 0,
isConfigured: true,
HEALTH_STATE_TYPES,
extensionDashboardRoute: {
Expand Down Expand Up @@ -96,8 +92,6 @@ export default {
this.deviating++;
} else if (component.state.healthState === 'CRITICAL') {
this.critical++;
} else if (component.state.healthState === 'HEALTHY') {
this.healthy++;
}
}
this.observed = obs;
Expand Down

0 comments on commit c407b25

Please sign in to comment.