Skip to content

Commit

Permalink
修改查询套件选择后 选择框的自动关闭时间
Browse files Browse the repository at this point in the history
  • Loading branch information
l3yx committed Dec 21, 2023
1 parent 3122dcc commit 14dd5cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion web/src/views/Project.vue
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ const suiteSelectChange = () => {
}
suiteSelectTimeout.value = setTimeout(() => {
suiteSelect.value.blur()
}, 500)
}, 10)
}
}
Expand Down
4 changes: 2 additions & 2 deletions web/src/views/Task.vue
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ const suiteSelectChange = () => {
}
suiteSelectTimeout.value = setTimeout(() => {
suiteSelect.value.blur()
}, 500)
}, 10)
}
}
Expand Down Expand Up @@ -433,7 +433,7 @@ const githubBatchTasksSuiteSelectChange = () => {
}
githubBatchTasksSuiteSelectTimeout.value = setTimeout(() => {
githubBatchTasksSuiteSelect.value.blur()
}, 500)
}, 10)
}
}
const githubBatchTasksDialogFormOffsetChange = () =>{
Expand Down

0 comments on commit 14dd5cc

Please sign in to comment.