From 56a442fe47c86091c9bc2068f63b0d48046e7c7a Mon Sep 17 00:00:00 2001 From: root Date: Fri, 3 Jul 2026 13:03:14 +0000 Subject: [PATCH] chore: add web rollout sample marker --- web/hwlab-cloud-web/src/components/common/StatusBadge.vue | 1 + 1 file changed, 1 insertion(+) 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");