remove broken advanced search warning (#6785)

pull/6896/head
Niklas Fiekas 2020-06-29 10:13:52 +02:00
parent b24d48c598
commit 78e8fa8ec3
3 changed files with 0 additions and 5 deletions

View File

@ -79,7 +79,6 @@ object index {
if (pager.nbResults > 0)
frag(
div(cls := "search__status box__pad")(
"While we are working to fix advanced search this view might be missing recent games • ", // #6785
strong(xGamesFound(pager.nbResults.localize, pager.nbResults)),
" • ",
permalink
@ -91,7 +90,6 @@ object index {
)
else
div(cls := "search__status box__pad")(
"While we are working to fix advanced search this view might be missing recent games • ", // #6785
strong(xGamesFound(0)),
" • ",
permalink

View File

@ -36,7 +36,6 @@ object gamesContent {
if (pager.nbResults > 0)
frag(
div(cls := "search__status")(
"While we are working to fix advanced search this view might be missing recent games • ", // #6785
strong(pager.nbResults.localize, " games found"),
" • ",
permalink
@ -50,7 +49,6 @@ object gamesContent {
)
else
div(cls := "search__status")(
"While we are working to fix advanced search this view might be missing recent games • ", // #6785
strong("No game found"),
" • ",
permalink

View File

@ -90,7 +90,6 @@
}
&__status {
color: red; /* #6785 */
padding-top: 1.5em;
padding-bottom: 1.5em;
background: $c-bg-zebra;