Skip to content

Commit

Permalink
fix:remove null checker
Browse files Browse the repository at this point in the history
  • Loading branch information
maceteligolden committed Dec 13, 2023
1 parent 7234dfa commit b11f515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/lib/components/kanban-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export default function Item(props: any) {

<div className="flex flex-row flex-wrap items-center text-sm not-italic font-semibold">
<TaskIssueStatus showIssueLabels={false} task={item} className={`${
item?.issueType === 'Bug' ? '!px-[0.3312rem] py-[0.2875rem]' : '!px-[0.375rem] py-[0.375rem]'
item.issueType === 'Bug' ? '!px-[0.3312rem] py-[0.2875rem]' : '!px-[0.375rem] py-[0.375rem]'
} rounded-sm mr-1`}/>
<span className="text-grey text-normal mr-1">#{item.number}</span>
<span className="text-black dark:text-white text-normal capitalize mr-2">{item.title}</span>
Expand Down

0 comments on commit b11f515

Please sign in to comment.