+
@@ -77,7 +77,7 @@ export function RequestsPage() {
setStateFilter(s);
setPage(1);
}}
- className={`rounded-lg px-3 py-1.5 text-sm ${stateFilter === s ? "bg-surface-raised text-text" : "text-muted hover:text-text"}`}
+ className={`shrink-0 rounded-lg px-3 py-2 text-sm ${stateFilter === s ? "bg-surface-raised text-text" : "text-muted hover:text-text"}`}
>
{s.replace("_", " ").toLowerCase()}
@@ -88,7 +88,7 @@ export function RequestsPage() {
setAgentFilter(e.target.value ? Number(e.target.value) : "");
setPage(1);
}}
- className="ml-auto rounded-lg border border-border-strong bg-bg px-3 py-1.5 text-sm text-text outline-none"
+ className="sticky right-0 ml-auto shrink-0 rounded-lg border border-border-strong bg-bg px-3 py-2 text-sm text-text outline-none sm:static"
>
{agents.map((a) => (
@@ -125,7 +125,7 @@ export function RequestsPage() {
{relativeTime(r.created_at)}
-
+
))}
diff --git a/UI/src/pages/Settings.tsx b/UI/src/pages/Settings.tsx
index b367693..e2cf2b4 100644
--- a/UI/src/pages/Settings.tsx
+++ b/UI/src/pages/Settings.tsx
@@ -9,7 +9,7 @@ import { CodeBlock } from "../components/CodeBlock";
function Section({ title, description, children }: { title: string; description?: string; children: React.ReactNode }) {
return (
-
+
{title}
{description && {description}
}
{children}
@@ -147,7 +147,7 @@ export function SettingsPage() {
{user?.totp_enabled ? (
-
+
✓ 2FA is enabled