parent
b04f6b7e98
commit
ab952f89b0
|
@ -12,6 +12,7 @@ v1.10.2 (unreleased)
|
|||
[roadmap](https://github.com/Icinga/icingaweb2-module-director/milestone/31?closed=1)
|
||||
|
||||
### UI
|
||||
* FEATURE: improve Service Set table layout (#2648)
|
||||
* FIX: modifying single timeperiod ranges had no effect (#2525)
|
||||
|
||||
### Import and Sync
|
||||
|
|
|
@ -9,6 +9,7 @@ use gipfl\IcingaWeb2\Table\ZfQueryBasedTable;
|
|||
use gipfl\IcingaWeb2\Url;
|
||||
use Icinga\Module\Director\Db\DbSelectParenthesis;
|
||||
use Icinga\Module\Director\Restriction\FilterByNameRestriction;
|
||||
use ipl\Html\Html;
|
||||
use Ramsey\Uuid\Uuid;
|
||||
|
||||
class ObjectSetTable extends ZfQueryBasedTable
|
||||
|
@ -62,7 +63,7 @@ class ObjectSetTable extends ZfQueryBasedTable
|
|||
$row->object_name,
|
||||
$row->count_services
|
||||
), $url),
|
||||
$row->description ? ': ' . $row->description : null
|
||||
$row->description ? [Html::tag('br'), Html::tag('i', $row->description)] : null
|
||||
])
|
||||
]);
|
||||
if (! empty($classes)) {
|
||||
|
|
Loading…
Reference in New Issue