ApplicationStateMessages: Fix message layout

This commit is contained in:
Johannes Meyer 2019-07-26 15:23:41 +02:00
parent c884a9b61d
commit 9cdf37410c
1 changed files with 5 additions and 1 deletions

View File

@ -61,7 +61,11 @@ class ApplicationStateMessages extends AbstractWidget
$ackForm = new AcknowledgeApplicationStateMessageForm();
$ackForm->populate(['id' => $id]);
$html .= Markdown::text($message) . $ackForm;
$html .= '<section class="markdown">';
$html .= Markdown::text($message);
$html .= '</section>';
$html .= $ackForm;
$html .= '</div>';