From a536c1d863581780883899e284a0a2a9cc73a05f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 17 Nov 2020 21:16:35 +0100 Subject: Repair by* input. --- module/calp/html/vcomponent.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/module/calp/html/vcomponent.scm b/module/calp/html/vcomponent.scm index ea3f9629..7d057b67 100644 --- a/module/calp/html/vcomponent.scm +++ b/module/calp/html/vcomponent.scm @@ -446,8 +446,8 @@ bymonthday byyearday byweekno bymonth bysetpos) (let ((input - (lambda (value final) - `(input (@ (class "unit " (or final "")) + (lambda* (value optional: (final "")) + `(input (@ (class "unit " ,final) (type "number") (size 2) (value ,value) @@ -482,7 +482,7 @@ ((bysetpos) rrule:bysetpos)) it) '()))) - (input '() "final")))) + ,(input '() "final")))) (else (error "Unknown field, " key)))) ;; TODO enable this button -- cgit v1.2.3