event-history.phtml: Remove duplicate `class` attribute (#3753)
This commit is contained in:
parent
1c0a70d152
commit
bd2cd0dda5
|
@ -16,7 +16,6 @@ if (! $this->compact): ?>
|
||||||
'compact' => $this->compact,
|
'compact' => $this->compact,
|
||||||
'history' => $history,
|
'history' => $history,
|
||||||
'isOverview' => true,
|
'isOverview' => true,
|
||||||
'tableCssClass' => 'table-row-selectable',
|
|
||||||
'translationDomain' => $this->translationDomain
|
'translationDomain' => $this->translationDomain
|
||||||
)
|
)
|
||||||
) ?>
|
) ?>
|
||||||
|
|
|
@ -39,7 +39,7 @@ $lastDate = null;
|
||||||
$flappingMsg = $this->translate('Flapping with a %.2f%% state change rate');
|
$flappingMsg = $this->translate('Flapping with a %.2f%% state change rate');
|
||||||
$rowAction = Url::fromPath('monitoring/event/show');
|
$rowAction = Url::fromPath('monitoring/event/show');
|
||||||
?>
|
?>
|
||||||
<table class="table-row-selectable state-table" data-base-target="_next"<?php if (isset($tableCssClass)): ?> class="<?=$tableCssClass ?>"<?php endif ?>>
|
<table class="table-row-selectable state-table" data-base-target="_next">
|
||||||
<tbody>
|
<tbody>
|
||||||
<?php foreach ($history->peekAhead() as $event):
|
<?php foreach ($history->peekAhead() as $event):
|
||||||
$icon = '';
|
$icon = '';
|
||||||
|
|
Loading…
Reference in New Issue