Skip to content

Commit

Permalink
fix render bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Zzm0809 committed Dec 27, 2023
1 parent b3f0469 commit 57a9acc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ const FlinkTable = (props: JobProps): JSX.Element => {
return entity.endTime === -1 || entity['end-time'] === -1
? '-'
: formatTimestampToYYYYMMDDHHMMSS(entity['end-time'] as number) ||
formatTimestampToYYYYMMDDHHMMSS(entity.startTime as number);
formatTimestampToYYYYMMDDHHMMSS(entity.endTime as number);
}
},
{
Expand Down

0 comments on commit 57a9acc

Please sign in to comment.