From 266cc96fb32a2c2dcc18b3bde71dfe640f86a537 Mon Sep 17 00:00:00 2001 From: Marcus Kammer Date: Tue, 22 Oct 2024 16:33:41 +0200 Subject: [PATCH] Fix spinneret element error --- src/form.lisp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/form.lisp b/src/form.lisp index b4158f1..fb042f6 100644 --- a/src/form.lisp +++ b/src/form.lisp @@ -465,6 +465,7 @@ Returns: The corresponding HTML input type string." (cond ((string= type "single") "radio") ((string= type "multiple") "checkbox") + ((string= type "short") "text") (t type))) (defmacro multi-form (&body body)