diff --git a/examples/server/themes/mount-ai/index.html b/examples/server/themes/mount-ai/index.html
index 03f9c2639..a4a33aeb1 100644
--- a/examples/server/themes/mount-ai/index.html
+++ b/examples/server/themes/mount-ai/index.html
@@ -559,7 +559,7 @@ function updateSystemPrompt(e) {
}
}
- const FloatField = ({ label, max, min, name, step, value }) => {
+ const FloatField = ({ label, title, max, min, name, step, value }) => {
return html`
@@ -579,7 +579,7 @@ function updateSystemPrompt(e) {
`
};
- const BoolField = ({ label, name, value }) => {
+ const BoolField = ({ label, title, name, value }) => {
return html`
@@ -793,41 +793,41 @@ function updateSystemPrompt(e) {
${session.value.type === 'chat' ? ChatConfigForm() : CompletionConfigForm()}
Further Options