Fix little glitch in project list when there is no icon

This commit is contained in:
Frederic Guillot 2017-03-19 18:17:43 -04:00
parent e9f9040d7b
commit a46d66cf8c
1 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,6 @@
<div class="table-list-icons">
&nbsp;
<?php if ($project['is_public']): ?>
<i class="fa fa-share-alt fa-fw" title="<?= t('Shared project') ?>"></i>
<?php endif ?>
@ -18,6 +20,6 @@
<?php endif ?>
<?php if ($project['is_active'] == 0): ?>
<i class="fa fa-ban fa-fw" aria-hidden="true" title="<?= t('Closed') ?>"></i><?= t('Closed') ?>
<i class="fa fa-ban fa-fw" aria-hidden="true" title="<?= t('Closed') ?>"></i><?= t('Closed') ?>
<?php endif ?>
</div>