This is an automated email from the ASF dual-hosted git repository. zhongjiajie pushed a commit to branch 3.0.4-prepare in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
commit d79dc31e31942cebb7fd500f8ca9cda1366f8029 Author: xla0 <[email protected]> AuthorDate: Sat Dec 10 12:34:35 2022 +0800 [Improvement-13084][UI] Make download log button disabled when host is null (#13090) Co-authored-by: xiaojingxuan <[email protected]> (cherry picked from commit 58d21abfa166cb8c93ca4ff511f769dd147b2aff) --- dolphinscheduler-ui/src/views/projects/task/instance/use-table.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/dolphinscheduler-ui/src/views/projects/task/instance/use-table.ts b/dolphinscheduler-ui/src/views/projects/task/instance/use-table.ts index ec225762fd..5b99884ff5 100644 --- a/dolphinscheduler-ui/src/views/projects/task/instance/use-table.ts +++ b/dolphinscheduler-ui/src/views/projects/task/instance/use-table.ts @@ -241,6 +241,7 @@ export function useTable() { circle: true, type: 'info', size: 'small', + disabled: !row.host, onClick: () => downloadLog(row.id) }, {
