mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 02:33:01 +00:00
use Avatar in table for assignee
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
import type { IssueResponse, ProjectResponse } from "@issue/shared";
|
import type { IssueResponse, ProjectResponse } from "@issue/shared";
|
||||||
|
import Avatar from "@/components/avatar";
|
||||||
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table";
|
import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table";
|
||||||
import { cn } from "@/lib/utils";
|
import { cn } from "@/lib/utils";
|
||||||
|
|
||||||
@@ -51,7 +52,9 @@ export function IssuesTable({
|
|||||||
<TableCell className="overflow-hide">{issueData.Issue.description}</TableCell>
|
<TableCell className="overflow-hide">{issueData.Issue.description}</TableCell>
|
||||||
)}
|
)}
|
||||||
{(columns.assignee == null || columns.assignee === true) && (
|
{(columns.assignee == null || columns.assignee === true) && (
|
||||||
<TableCell className={"text-right"}>{issueData.User?.id || "?"}</TableCell>
|
<TableCell className={"w-[0px] text-center px-1 py-0"}>
|
||||||
|
{issueData.User ? <Avatar user={issueData.User} size={6} /> : "?"}
|
||||||
|
</TableCell>
|
||||||
)}
|
)}
|
||||||
</TableRow>
|
</TableRow>
|
||||||
))}
|
))}
|
||||||
|
|||||||
Reference in New Issue
Block a user