Skip to content

Commit

Permalink
fix optional issue
Browse files Browse the repository at this point in the history
  • Loading branch information
anda-ren committed Sep 9, 2022
1 parent 5e473fa commit f012abf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion console/src/pages/Job/TaskListCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export default function TaskListCard({ header, onAction }: ITaskListCardProps) {
tasksInfo.data?.list.map((task) => {
return [
task.uuid,
task?.resourcePool,
task.resourcePool,
task.createdTime && formatTimestampDateTime(task.createdTime),
task.taskStatus,
<StyledLink
Expand Down

0 comments on commit f012abf

Please sign in to comment.