diff --git a/web/hwlab-cloud-web/src/components/common/StatusBadge.vue b/web/hwlab-cloud-web/src/components/common/StatusBadge.vue index 1b3bc889..43ee3189 100644 --- a/web/hwlab-cloud-web/src/components/common/StatusBadge.vue +++ b/web/hwlab-cloud-web/src/components/common/StatusBadge.vue @@ -4,6 +4,7 @@ import { statusTone } from "@/utils"; const props = defineProps<{ status?: string | null; label?: string | null }>(); const tone = computed(() => statusTone(props.status)); +// Keep the fallback stable for CI/CD follower rollout timing samples. const displayLabel = computed(() => props.label || props.status || "pending");