SPB Git forge

spb/job-ka

Public
229commits 1branches 0releases
38.1 MBsize
maindefault branch
1 h agolast push
HTML 82.1% Python 14.6% TypeScript 1.9% CSS 1% JavaScript 0.5%

kacharts : param inutilisé retiré (variante lint-clean du kit)

Simon-Pierre Boucher committed 1 mo ago (Aug 23, 2026) parent 518093f

1 changed file +1 −1

modified frontend/src/ka/stats/kacharts.tsx +1 −1
@@ -278,7 +278,7 @@ export function MultiLineChart({ ms, height = 260 }: { ms: MultiSerie; height?:
278 278 {hi !== null && (
279 279 <p className="chip" style={{ marginTop: 8, display: "inline-flex", gap: 12, flexWrap: "wrap" }}>
280 280 <b>{ref[hi]?.t}</b>
281 − {shown.map((s, i) => (
281 + {shown.map((s) => (
282 282 <span key={s.label}>{s.label} : <b>{s.points[hi] ? fmtNum(s.points[hi].v) : "—"}{ms.unit ? ` ${ms.unit}` : ""}</b></span>
283 283 ))}
284 284 </p>
285 285