From cbaf978394966b42c7c5a16c50e80dc6a6130a79 Mon Sep 17 00:00:00 2001 From: Rok Garbas Date: Fri, 7 Aug 2020 14:44:19 +0200 Subject: [PATCH] add link to issues tracker (#144) fixes #138 --- src/Main.elm | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/Main.elm b/src/Main.elm index 14ef30a..4ffc49c 100644 --- a/src/Main.elm +++ b/src/Main.elm @@ -308,12 +308,18 @@ view model = , footer [ class "container text-center" ] [ div [] - [ span [] [ text "Elasticsearch instance graciously provided by " ] - , a [ href "https://bonsai.io" ] [ text "Bonsai" ] + [ span [] [ text "Please help us improve the search by " ] + , a + [ href "https://github.com/NixOS/nixos-search/issues" + ] + [ text "reporting issues" ] , span [] [ text "." ] ] , div [] - [ span [] [ text "❤️ Thank you ❤️ " ] + [ span [] [ text "❤️ " ] + , span [] [ text "Elasticsearch instance graciously provided by " ] + , a [ href "https://bonsai.io" ] [ text "Bonsai" ] + , span [] [ text ". Thank you! ❤️ " ] ] ] ]