Skip to content

Commit

Permalink
[Timeline]: fixed more bugs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuznietsov committed Jul 29, 2024
1 parent 272eaa6 commit 6719500
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/src/demo/tables/editableTable/TaskBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export function TaskBar({ task, timelineController }: { task: Task, timelineCont
cx={
cx(
statusCss.statusIcon,
statusCss[`statusIcon${status.id !== undefined ? statusTags[status?.id] : 'None'}`],
statusCss[`statusIcon${status?.id !== undefined ? statusTags[status?.id] : 'None'}`],
)
}
/>
Expand Down Expand Up @@ -187,7 +187,7 @@ export function TaskBar({ task, timelineController }: { task: Task, timelineCont
return (
<Tooltip renderContent={ renderTaskStatus } openDelay={ 1000 } cx={ css.container } color="neutral">
<div
key={ item.id }
key={ item?.id }
className={ css.taskBarWrapper }
style={ {
height: item.height ?? 18,
Expand Down

0 comments on commit 6719500

Please sign in to comment.