diff --git a/.changeset/silly-plants-kick.md b/.changeset/silly-plants-kick.md new file mode 100644 index 00000000..d797aec5 --- /dev/null +++ b/.changeset/silly-plants-kick.md @@ -0,0 +1,5 @@ +--- +"observability": patch +--- + +Fix bug where health state badges show UNKNOWN health state when the extension is not fully configured diff --git a/pkg/observability/components/ComponentHealth.vue b/pkg/observability/components/ComponentHealth.vue index d0548f94..919c9427 100644 --- a/pkg/observability/components/ComponentHealth.vue +++ b/pkg/observability/components/ComponentHealth.vue @@ -1,6 +1,10 @@ diff --git a/pkg/observability/components/Health/HealthDisc.vue b/pkg/observability/components/Health/HealthDisc.vue index e9e63e04..147524fd 100644 --- a/pkg/observability/components/Health/HealthDisc.vue +++ b/pkg/observability/components/Health/HealthDisc.vue @@ -3,7 +3,7 @@ import { HEALTH_STATE_TYPES } from "../../types/types"; export default { name: "HealthDisc", - props: { health: { type: String, default: HEALTH_STATE_TYPES.UNKNOWN } }, + props: { health: { type: String, default: HEALTH_STATE_TYPES.UNCONFIGURED } }, };