Skip to content

Commit

Permalink
Merge pull request #207 from tapdata/hotfix-v3.5.7-order-list
Browse files Browse the repository at this point in the history
Hotfix v3.5.7 order list
  • Loading branch information
StormKennen authored Nov 22, 2023
2 parents eab49e7 + 8f44e64 commit f6bc077
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/business/src/components/TaskStatus.vue
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,8 @@ export default {
},
showRetrying() {
const { functionRetryStatus, taskRetryStatus } = this.task
return functionRetryStatus === 'Retrying' || taskRetryStatus === 'Retrying'
const { functionRetryStatus, taskRetryStatus, status } = this.task
return status === 'running' && (functionRetryStatus === 'Retrying' || taskRetryStatus === 'Retrying')
},
taskRetryStartTimeTip() {
Expand Down
4 changes: 4 additions & 0 deletions packages/business/src/views/connections/Test.vue
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,10 @@ export default {
}
}
})
// 检查不到下载器
this.$ws.on('unknown_event_result', () => {
this.startLoadTestItems(connection, updateSchema, editTest)
})
})
},
Expand Down

0 comments on commit f6bc077

Please sign in to comment.