mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-06-09 08:34:04 -04:00
ApplicationStateMessages: Fix message layout
This commit is contained in:
parent
c884a9b61d
commit
9cdf37410c
1 changed files with 5 additions and 1 deletions
|
|
@ -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>';
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue