diff --git a/website/presentation/dom.nix b/website/presentation/dom.nix index c1b0e27c..cb69d2c6 100644 --- a/website/presentation/dom.nix +++ b/website/presentation/dom.nix @@ -136,7 +136,7 @@ let if isBool value then if value then name else "" # TODO: some attributes must be explicitly empty - else optionalString (toString value != "") ''${name}=${value}'' + else optionalString (toString value != "") ''${name}="${toString value}"'' ) attrs) );