* Removes the type prompt on the project list page name under the product.

This commit is contained in:
tianshujie
2022-11-22 13:18:49 +08:00
parent a04c00387d
commit 672bbadffe
+1 -1
View File
@@ -74,7 +74,7 @@
<td class='text-left'>
<?php
$projectType = $project->model == 'scrum' ? 'sprint' : $project->model;
echo html::a($this->createLink('project', 'index', 'project=' . $project->id), "<i class='text-muted icon icon-{$projectType}'></i> " . $project->name, '', "title='{$project->name} ({$lang->project->{$project->model}})'");
echo html::a($this->createLink('project', 'index', 'project=' . $project->id), "<i class='text-muted icon icon-{$projectType}'></i> " . $project->name, '', "title='$project->name'");
?>
</td>
<?php if(strpos('all,undone', $status) !== false):?>