pull/9200/head
Niklas Fiekas 2021-06-15 10:16:23 +02:00
parent 2282eb18a5
commit 839bc324ae
2 changed files with 3 additions and 2 deletions

View File

@ -23,7 +23,7 @@ object homepageSpotlight {
} getOrElse {
spot.iconFont.fold[Frag](iconTag("")(cls := "img")) {
case "" => img(cls := "img icon", src := assetUrl(s"images/globe.svg"))
case i => iconTag(i)(cls := "img")
case i => iconTag(i)(cls := "img")
}
},
span(cls := "content")(

View File

@ -56,7 +56,8 @@ object gamesContent {
pager.currentPageResults.flatMap { Pov(_, u) }.map { pov =>
views.html.game.mini(pov)(ctx)(cls := "paginated")
}
else views.html.game.widgets(pager.currentPageResults, notes, user = u.some, ownerLink = ctx is u),
else
views.html.game.widgets(pager.currentPageResults, notes, user = u.some, ownerLink = ctx is u),
pagerNext(pager, np => routes.User.games(u.username, filterName, np).url)
)
)