From f749c3d2bf8795a7f32c4f8d7c168bafb6fe248e Mon Sep 17 00:00:00 2001 From: root Date: Fri, 3 Jul 2026 14:01:02 +0000 Subject: [PATCH] chore: sample jd01 follower timing --- web/hwlab-cloud-web/src/components/common/StatusBadge.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/hwlab-cloud-web/src/components/common/StatusBadge.vue b/web/hwlab-cloud-web/src/components/common/StatusBadge.vue index 43ee3189..67495cb0 100644 --- a/web/hwlab-cloud-web/src/components/common/StatusBadge.vue +++ b/web/hwlab-cloud-web/src/components/common/StatusBadge.vue @@ -4,7 +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. +// Keep the fallback stable for JD01 follower rollout timing samples. const displayLabel = computed(() => props.label || props.status || "pending");