[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/10: Avoid errors in form-horizontal-control
From: |
Christopher Baines |
Subject: |
02/10: Avoid errors in form-horizontal-control |
Date: |
Sat, 21 Nov 2020 16:11:42 -0500 (EST) |
cbaines pushed a commit to branch master
in repository data-service.
commit d0a4143c7c45f84d5761fb6ccf31be586b1c887c
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Sat Nov 21 18:31:39 2020 +0000
Avoid errors in form-horizontal-control
When invalid parameters don't have a message.
---
guix-data-service/web/view/html.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/guix-data-service/web/view/html.scm
b/guix-data-service/web/view/html.scm
index 1e19b6f..40cf60e 100644
--- a/guix-data-service/web/view/html.scm
+++ b/guix-data-service/web/view/html.scm
@@ -253,7 +253,7 @@
(@ (style "display: block;"))
,(string-append
"Error: " message)))
- messages)))))
+ (filter string? messages))))))
'())
,@(if required? '((strong "Required. ")) '())
,@(if help-text
- branch master updated (3e15900 -> e93da1a), Christopher Baines, 2020/11/21
- 01/10: Avoid crashing when no compare arguments are provided, Christopher Baines, 2020/11/21
- 04/10: Improve the comparison page interface, Christopher Baines, 2020/11/21
- 02/10: Avoid errors in form-horizontal-control,
Christopher Baines <=
- 03/10: Specify an invalid parameter message in parse-datetime, Christopher Baines, 2020/11/21
- 05/10: Add default datetimes for compare-by-datetime, Christopher Baines, 2020/11/21
- 06/10: Fix some links on the compare page, Christopher Baines, 2020/11/21
- 09/10: Consolidate the package derivation comparison code, Christopher Baines, 2020/11/21
- 08/10: Start merging the package derivation comparison code, Christopher Baines, 2020/11/21
- 07/10: Extract out the compare form controls, Christopher Baines, 2020/11/21
- 10/10: Fix the JSON link on the compare package derivations page, Christopher Baines, 2020/11/21