Keep eliss-control-group from outputting nil="nil"
This commit is contained in:
parent
57a4ee838a
commit
49639ee0ee
1 changed files with 3 additions and 2 deletions
5
eliss.el
5
eliss.el
|
@ -80,8 +80,9 @@ certain other properties.
|
|||
(input (@ (type "text")
|
||||
(name ,name)
|
||||
(id ,name)
|
||||
,(when placeholder `(placeholder ,placeholder))
|
||||
,(when default `(value ,default))))))))
|
||||
,@(when placeholder
|
||||
`((placeholder ,placeholder)))
|
||||
,@(when default `((value ,default)))))))))
|
||||
|
||||
(defun eliss-project-page (httpcon)
|
||||
"Send a list of issues and an issue-creation form over HTTPCON."
|
||||
|
|
Loading…
Reference in a new issue