We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bae68e8 commit 278f74eCopy full SHA for 278f74e
src/frontend/Page/Search.elm
@@ -131,8 +131,15 @@ viewSearch query entries =
131
results =
132
List.map viewEntry (Entry.search query es)
133
in
134
- Keyed.node "div" [] <|
135
- ("h", viewHint (List.isEmpty results) query) :: results
+ div []
+ [ Keyed.node "div" [] <|
136
+ ("h", viewHint (List.isEmpty results) query) :: results
137
+ , p [ class "pkg-hint" ]
138
+ [ text "Need documentation for a 0.18 package? Read "
139
+ , a [ href "https://gist.github.com/evancz/9031e37902dfaec250a08a7aa6e17b10" ] [ text "this" ]
140
+ , text " for help finding it."
141
+ ]
142
143
]
144
145
0 commit comments