We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72926d5 commit edc6903Copy full SHA for edc6903
examples/server/public/index.html.gz
14 Bytes
examples/server/webui/src/components/Header.tsx
@@ -235,6 +235,16 @@ export default function Header() {
235
tabIndex={0}
236
className="dropdown-content bg-base-300 rounded-box z-[1] w-52 p-2 shadow-2xl h-80 overflow-y-auto"
237
>
238
+ <li>
239
+ <input
240
+ type="radio"
241
+ name="settings"
242
+ className="theme-controller btn btn-sm btn-block btn-ghost justify-start"
243
+ aria-label="Manual settings"
244
+ value="Manual settings"
245
+ onChange={() => setShowSettings(true)}
246
+ />
247
+ </li>
248
{[...promptSelectOptions].map((opt) => (
249
<li key={opt.key}>
250
<input
0 commit comments