Skip to content

Commit

Permalink
优化模型训练定时刷新状态
Browse files Browse the repository at this point in the history
  • Loading branch information
Yurunsoft committed Aug 30, 2023
1 parent e170b52 commit b721bfc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web/src/views/embedding/viewProject.vue
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,8 @@ async function loadInfo(allowNewTimer = true) {
if (timer)
clearInterval(timer)
timer = setInterval(async () => {
loadInfo(false)
if (!showLoading.value)
loadInfo(false)
}, 1500)
}
}
Expand Down

0 comments on commit b721bfc

Please sign in to comment.