|
1 | 1 | import { useEffect, useMemo, useState } from "react"; |
2 | 2 | import { formatUptime } from "../formatUptime"; |
3 | | -import { IconAlert, IconExternal, IconRefresh, IconX } from "../icons"; |
| 3 | +import { IconAlert, IconExternal, IconInfo, IconRefresh, IconX } from "../icons"; |
4 | 4 | import { useI18n, Trans } from "../i18n"; |
5 | 5 | import { formatTokens } from "../format-tokens"; |
6 | 6 | import { EmptyState, Select } from "../ui"; |
@@ -377,10 +377,13 @@ export default function Dashboard({ apiBase }: { apiBase: string }) { |
377 | 377 | <button |
378 | 378 | type="button" |
379 | 379 | className="btn btn-ghost btn-sm" |
380 | | - style={{ width: 18, height: 18, padding: 0, borderRadius: 999, fontSize: 11, fontWeight: 700, color: "var(--muted)", lineHeight: 1 }} |
| 380 | + style={{ width: 24, height: 24, minWidth: 24, flex: "0 0 24px", padding: 0, borderRadius: 999, color: "var(--muted)" }} |
381 | 381 | onClick={() => setMaHelpOpen(true)} |
382 | | - aria-label="Help" |
383 | | - >?</button> |
| 382 | + aria-label={t("dash.multiAgent")} |
| 383 | + aria-haspopup="dialog" |
| 384 | + > |
| 385 | + <IconInfo width={14} height={14} aria-hidden="true" /> |
| 386 | + </button> |
384 | 387 | </div> |
385 | 388 | <div className="value" style={{ display: "flex", alignItems: "center", justifyContent: "center" }}> |
386 | 389 | <div role="radiogroup" aria-label={t("dash.multiAgent")} style={{ display: "inline-flex", borderRadius: 999, background: "var(--surface-soft, var(--raised))", padding: 3, gap: 2 }}> |
|
0 commit comments