chg: [UI] Use colors for published events

pull/8398/head
Jakub Onderka 2022-05-22 22:18:05 +02:00
parent d911b750db
commit 66a8ff24bf
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@
<?php endif; ?>
<td class="short dblclickElement">
<a href="<?= "$baseurl/events/view/$eventId" ?>" title="<?= __('View') ?>" aria-label="<?= __('View') ?>">
<i class="black fa <?= $event['Event']['published'] == 1 ? 'fa-check' : 'fa-times' ?>"></i>
<i class="fa <?= $event['Event']['published'] ? 'fa-check green' : 'fa-times grey' ?>"></i>
</a>
</td>
<?php if (Configure::read('MISP.showorg') || $isAdmin): ?>