Merge pull request #2372 from pikasTech/chore/jd01-follower-sample-web-change

chore: 添加 JD01 自动跟随 web 样本标记
This commit is contained in:
Lyon
2026-07-03 21:04:01 +08:00
committed by GitHub
@@ -4,6 +4,7 @@ import { statusTone } from "@/utils";
const props = defineProps<{ status?: string | null; label?: string | null }>(); const props = defineProps<{ status?: string | null; label?: string | null }>();
const tone = computed(() => statusTone(props.status)); 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"); const displayLabel = computed(() => props.label || props.status || "pending");
</script> </script>