chore: add web rollout sample marker

This commit is contained in:
root
2026-07-03 13:03:14 +00:00
parent cd2919ae45
commit 56a442fe47
@@ -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");
</script>