This is an automated email from the ASF dual-hosted git repository. nicholasjiang pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/paimon-webui.git
commit e0e1bd26b02a7e005f48968f345dd588c13d25e7 Author: s7monk <34889415+s7m...@users.noreply.github.com> AuthorDate: Tue Jul 9 19:39:58 2024 +0800 [Bugfix] Fix the loading state of the submit button (#486) Co-authored-by: s7monk <“15512826...@163.com”> --- .../src/views/playground/components/query/components/debugger/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/paimon-web-ui/src/views/playground/components/query/components/debugger/index.tsx b/paimon-web-ui/src/views/playground/components/query/components/debugger/index.tsx index bd3956d9..8d8da56f 100644 --- a/paimon-web-ui/src/views/playground/components/query/components/debugger/index.tsx +++ b/paimon-web-ui/src/views/playground/components/query/components/debugger/index.tsx @@ -250,7 +250,7 @@ export default defineComponent({ } watch(jobStatus, (newStatus) => { - if (newStatus === 'RUNNING') + if (newStatus === 'RUNNING' || newStatus === 'FINISHED' || newStatus === 'FAILED') isSubmitting.value = false })