Prettier format pending files
This commit is contained in:
parent
4d0a8b0328
commit
8a447c9a6c
1 changed files with 8 additions and 3 deletions
|
|
@ -409,7 +409,9 @@ export default function Dashboard() {
|
||||||
<div>
|
<div>
|
||||||
<h4 className="font-semibold">{project.title}</h4>
|
<h4 className="font-semibold">{project.title}</h4>
|
||||||
<p className="text-sm text-muted-foreground">
|
<p className="text-sm text-muted-foreground">
|
||||||
{project.status?.replace('_', ' ').toUpperCase()} • {project.technologies?.slice(0, 2).join(', ') || 'No tech specified'}
|
{project.status?.replace("_", " ").toUpperCase()} •{" "}
|
||||||
|
{project.technologies?.slice(0, 2).join(", ") ||
|
||||||
|
"No tech specified"}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -421,13 +423,16 @@ export default function Dashboard() {
|
||||||
<div className="w-20 bg-muted rounded-full h-2 mt-1">
|
<div className="w-20 bg-muted rounded-full h-2 mt-1">
|
||||||
<div
|
<div
|
||||||
className="bg-gradient-to-r from-aethex-500 to-neon-blue h-2 rounded-full"
|
className="bg-gradient-to-r from-aethex-500 to-neon-blue h-2 rounded-full"
|
||||||
style={{ width: `${getProgressPercentage(project)}%` }}
|
style={{
|
||||||
|
width: `${getProgressPercentage(project)}%`,
|
||||||
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<Badge
|
<Badge
|
||||||
variant={
|
variant={
|
||||||
getPriorityFromTech(project.technologies || []) === "High"
|
getPriorityFromTech(project.technologies || []) ===
|
||||||
|
"High"
|
||||||
? "destructive"
|
? "destructive"
|
||||||
: "secondary"
|
: "secondary"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue