In MAKE-NUMBER-INPUT-FIELD set default value field only if default
text is given.
This commit is contained in:
parent
12b2b96582
commit
9e5d62aa77
|
@ -374,7 +374,7 @@
|
||||||
number-input-field-transformer
|
number-input-field-transformer
|
||||||
`(input (@ (type "text")
|
`(input (@ (type "text")
|
||||||
(name ,name)
|
(name ,name)
|
||||||
(value ,default)
|
,(and default `(value ,default))
|
||||||
,(and attributes (cdr attributes))))))))))
|
,(and attributes (cdr attributes))))))))))
|
||||||
|
|
||||||
(define (make-password-input-field . maybe-further-attributes)
|
(define (make-password-input-field . maybe-further-attributes)
|
||||||
|
|
Loading…
Reference in New Issue