aboutsummaryrefslogtreecommitdiff
path: root/module/output
diff options
context:
space:
mode:
Diffstat (limited to 'module/output')
-rw-r--r--module/output/html.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/output/html.scm b/module/output/html.scm
index 350bf76d..402d2f07 100644
--- a/module/output/html.scm
+++ b/module/output/html.scm
@@ -206,7 +206,7 @@
`((class "event CAL_" ,(html-attr (or (attr (parent ev) 'NAME)
"unknown"))
,(when (and (attr ev 'PARTSTAT)
- (string= "TENTATIVE" (attr ev 'PARTSTAT)))
+ (eq? 'TENTATIVE (attr ev 'PARTSTAT)))
" tentative"))
(data-tipped-options ,(format #f "inline: '~a'" popup-id))
,@(when (debug) (data-attributes ev)))))
@@ -399,7 +399,7 @@
`((class "eventtext CAL_bg_"
,(html-attr (or (attr (parent ev) 'NAME) "unknown"))
,(when (and (attr ev 'PARTSTAT)
- (string= "TENTATIVE" (attr ev 'PARTSTAT)))
+ (eq? 'TENTATIVE (attr ev 'PARTSTAT)))
" tentative")))))
(h3 ,(fmt-header
(when (attr ev 'RRULE)