fix(admin): clarify partial playback status label

This commit is contained in:
linkeyu
2026-07-22 18:02:59 +08:00
parent f286c4f940
commit 4acc23ff69
+1 -1
View File
@@ -159,7 +159,7 @@ function playbackStatusTag(row: AdRevenueRow) {
const hint = entries
.map(([status, count]) => `${PLAYBACK_STATUS_TAG[status].label} ${count}`)
.join('');
return { color: 'purple', label: '混合状态', hint: `${hint}` };
return { color: 'purple', label: '部分完成', hint: `${hint}` };
}
const fmtFactorRange = (a: number | null, b: number | null) => {