1
0
Fork 0
mirror of https://code.sup39.dev/repos/Wqawg synced 2024-12-27 17:44:52 +09:00

UI: Display all messages in defaultLayout, not just one

This commit is contained in:
fr33domlover 2019-11-03 13:20:48 +00:00
parent 4dcd6eb1b2
commit deba50f835
2 changed files with 4 additions and 3 deletions

View file

@ -240,7 +240,7 @@ instance Yesod App where
defaultLayout widget = do
master <- getYesod
mmsg <- getMessage
msgs <- getMessages
mperson <- do
mperson' <- maybeAuthAllowUnverified
for mperson' $ \ (p@(Entity pid person), verified) -> runDB $ do

View file

@ -81,8 +81,9 @@ $if federationDisabled
^{breadcrumbsW}
$maybe msg <- mmsg
<div #message>#{msg}
<div #messages>
$forall (_status, msg) <- msgs
<div .message>#{msg}
^{widget}