fix: typo on no search results page (#370)

This commit is contained in:
Joel 2021-11-09 04:08:33 +10:00 committed by GitHub
parent b74147b671
commit 22f10dc4e6
Failed to generate hash of commit

View file

@ -883,11 +883,11 @@ viewNoResults :
viewNoResults categoryName =
div [ class "search-no-results" ]
[ h2 [] [ text <| "No " ++ categoryName ++ " found!" ]
, text "How to "
, Html.a [ href "https://nixos.org/manual/nixpkgs/stable/#chap-quick-start" ] [ text "add" ]
, text "You might want to "
, Html.a [ href "https://nixos.org/manual/nixpkgs/stable/#chap-quick-start" ] [ text "add a package" ]
, text " or "
, a [ href "https://github.com/NixOS/nixpkgs/issues/new?assignees=&labels=0.kind%3A+packaging+request&template=packaging_request.md&title=" ] [ text "request" ]
, text " package to nixpkgs?"
, a [ href "https://github.com/NixOS/nixpkgs/issues/new?assignees=&labels=0.kind%3A+packaging+request&template=packaging_request.md&title=" ] [ text "make a packaging request" ]
, text "."
]