Skip to content

Commit

Permalink
add id to item details
Browse files Browse the repository at this point in the history
  • Loading branch information
tuckner committed Dec 11, 2023
1 parent 5801467 commit e75586f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/Board/TaskDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ export default function TaskDetails({
<>
{!isDeleteTask ? (
<>
<div className=" text-lg font-bold flex items-center justify-between">
<p className=""> {tasks.name}</p>{" "}
<div className="text-lg font-bold flex items-center justify-between">
<p className="">{tasks.name}</p>{" "}
<div className="relative">
<p>
<FiMoreVertical
Expand All @@ -88,6 +88,9 @@ export default function TaskDetails({
)}
</div>
</div>
<div className="text-xs text-gray my-2">
<p>ID: A{tasks.id}</p>
</div>
<div>
<p className="text-sm my-4">
{tasks.description ? tasks.description : "No description"}
Expand Down

0 comments on commit e75586f

Please sign in to comment.