diff --git a/services/web-ui/public/shell.jsx b/services/web-ui/public/shell.jsx index 58345d6..4d4f148 100644 --- a/services/web-ui/public/shell.jsx +++ b/services/web-ui/public/shell.jsx @@ -162,6 +162,26 @@ function Topbar({ crumbs, onNavigate, right }) { ); } +// General-purpose read-only form field used by recorder modal and other forms. +// Renders as a labeled select (when select=true) or text input. +function Field({ label, value, select, children }) { + return ( +