fix(web): localize km workspace tabs
Some checks failed
CD Pipeline / workflow-shape (push) Successful in 1s
CD Pipeline / cancel-stale-cd (push) Has been skipped
CD Pipeline / tests (push) Successful in 1m5s
CD Pipeline / post-deploy-checks (push) Has been cancelled
CD Pipeline / build-and-deploy (push) Has been cancelled
Some checks failed
CD Pipeline / workflow-shape (push) Successful in 1s
CD Pipeline / cancel-stale-cd (push) Has been skipped
CD Pipeline / tests (push) Successful in 1m5s
CD Pipeline / post-deploy-checks (push) Has been cancelled
CD Pipeline / build-and-deploy (push) Has been cancelled
This commit is contained in:
@@ -2202,9 +2202,9 @@
|
||||
}
|
||||
},
|
||||
"workspace": {
|
||||
"records": "Records",
|
||||
"automation": "Automation",
|
||||
"queue": "Queue"
|
||||
"records": "知識記錄",
|
||||
"automation": "自動化資產",
|
||||
"queue": "受控隊列"
|
||||
},
|
||||
"overview": {
|
||||
"metricTotal": "總條目",
|
||||
|
||||
@@ -2202,9 +2202,9 @@
|
||||
}
|
||||
},
|
||||
"workspace": {
|
||||
"records": "Records",
|
||||
"automation": "Automation",
|
||||
"queue": "Queue"
|
||||
"records": "知識記錄",
|
||||
"automation": "自動化資產",
|
||||
"queue": "受控隊列"
|
||||
},
|
||||
"overview": {
|
||||
"metricTotal": "總條目",
|
||||
|
||||
@@ -9162,15 +9162,18 @@ function ManagerSituationBoard({
|
||||
</span>
|
||||
) : visibleBlockers.length ? (
|
||||
<>
|
||||
{visibleBlockers.map((blocker) => (
|
||||
<span
|
||||
key={blocker.source}
|
||||
title={blocker.source}
|
||||
className="border border-[#f0c6a8] bg-white px-2 py-0.5 font-mono text-[11px] font-semibold text-[#9a4d16]"
|
||||
>
|
||||
{compactBlockerLabel(blocker.source)}
|
||||
</span>
|
||||
))}
|
||||
{visibleBlockers.map((blocker, index) => {
|
||||
const source = blocker.source ?? `unknown_blocker_${index + 1}`;
|
||||
return (
|
||||
<span
|
||||
key={`${source}-${index}`}
|
||||
title={source}
|
||||
className="border border-[#f0c6a8] bg-white px-2 py-0.5 font-mono text-[11px] font-semibold text-[#9a4d16]"
|
||||
>
|
||||
{compactBlockerLabel(source)}
|
||||
</span>
|
||||
);
|
||||
})}
|
||||
{hiddenBlockerCount > 0 ? (
|
||||
<span className="border border-[#d8d3c7] bg-white px-2 py-0.5 font-mono text-[11px] font-semibold text-[#5f5b52]">
|
||||
+{hiddenBlockerCount}
|
||||
|
||||
Reference in New Issue
Block a user