Fix service labels not fitting inside container

Service Labels are automatically pushed to a new line when there is no enough space
This commit is contained in:
Yiğit Kerem Oktay 2020-08-14 12:09:12 +03:00 committed by GitHub
parent dc7fcdbd4f
commit f6acd559d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ class Incident implements JsonSerializable
<small>
<?php echo _("Impacted service(s): ");
foreach ( $this->service_name as $key => $value ) {
echo '<span class="label label-default">'.$value . '</span>&nbsp;';
echo '<span class="label label-default" style="display:inline-block;">'.$value . '</span>&nbsp;';
}
if (isset($this->end_date)){?>