Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion Template/dashboard/starred-projects.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@
<div class="table-list-header-count"><?= t('Starred projects') ?></div>
<div class="table-list-header-menu">&nbsp;</div>
</div>
<?php foreach ($starredProjects as $project): ?>
<?php foreach ($starredProjects as $project):
if($project == null)
continue;
?>
<div class="table-list-row table-border-left">
<div>
<?php if ($this->user->hasProjectAccess('ProjectViewController', 'show', $project['id'])): ?>
Expand Down