We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c61b8c2 commit 7a443d0Copy full SHA for 7a443d0
airbyte-webapp/src/components/JobItem/JobItem.tsx
@@ -46,7 +46,10 @@ const JobCurrentLogs: React.FC<{
46
};
47
48
const isPartialSuccessCheck = (attempts: Attempt[]) => {
49
- if (attempts[attempts.length - 1].status === Status.FAILED) {
+ if (
50
+ attempts.length > 0 &&
51
+ attempts[attempts.length - 1].status === Status.FAILED
52
+ ) {
53
return attempts.some(
54
(attempt) =>
55
attempt.failureSummary && attempt.failureSummary.partialSuccess
0 commit comments