summaryrefslogtreecommitdiff
path: root/app/Template
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2017-03-19 18:17:43 -0400
committerFrederic Guillot <fred@kanboard.net>2017-03-19 18:17:43 -0400
commita46d66cf8cc58b50f7a05c8c81cc94562b69dd61 (patch)
tree97423e30c0a365c8249c33f9a06222512bd1f5e7 /app/Template
parente9f9040d7b997f7e19218f0bc5d7376c5f6808c2 (diff)
Fix little glitch in project list when there is no icon
Diffstat (limited to 'app/Template')
-rw-r--r--app/Template/project_list/project_icons.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/Template/project_list/project_icons.php b/app/Template/project_list/project_icons.php
index c7e9c4a9..348db367 100644
--- a/app/Template/project_list/project_icons.php
+++ b/app/Template/project_list/project_icons.php
@@ -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>