Unify intraday summary priority across locales

This commit is contained in:
2569718930@qq.com
2026-03-24 04:13:58 +08:00
parent 1461d02488
commit 67e691ed95
+3 -1
View File
@@ -1281,7 +1281,9 @@ export function computeFrontTrendSignal(
return "";
})()
: "";
const combinedSummary = [backendSummary || summary, tafSummary, tafContrastSummary]
const backendSupplement =
backendSummary && backendSummary !== summary ? backendSummary : "";
const combinedSummary = [summary, tafSummary, tafContrastSummary, backendSupplement]
.filter(Boolean)
.join(isEnglish(locale) ? " " : "");
const cloudNote = (() => {