Skip to content

Commit

Permalink
Fix formating
Browse files Browse the repository at this point in the history
  • Loading branch information
shrir committed Dec 11, 2024
1 parent 05a1782 commit ecbe217
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions frontend/src/components/opportunities/columns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ export function getFixedColumns(
{
accessorKey: "orgSize",
header: ({ column }) => (
<DataTableColumnHeader column={column} title="Engineering Size" />
<DataTableColumnHeader column={column} title="Eng Size" />
),
cell: ({ row }) => {
const orgSize: OrgSize = row.getValue("orgSize")
Expand Down Expand Up @@ -818,20 +818,20 @@ export function getFixedColumns(
return (
<>
{owner ? (
<>
<div className="flex items-center space-x-1.5">
<Avatar className="h-[15px] w-[15px] mr-1.5 rounded-lg">
<AvatarImage src={owner.avatarUrl} alt={owner.name} />
<AvatarFallback className="text-[8px]">
{getNameInitials(owner.name)}
</AvatarFallback>
</Avatar>
{owner.name}
</>
<span>{owner.name}</span>
</div>
) : (
<>
<div className="flex items-center space-x-1.5">
<CircleUserRound size={15} className="mr-1.5" />
No asignee
</>
<span>No asignee</span>
</div>
)}
</>
)
Expand Down

0 comments on commit ecbe217

Please sign in to comment.