Browse Source

fix switch status button not show correctly (#15686)

Co-authored-by: xiangzihao <460888207@qq.com>
dev_wenjun_refactorMaster
lch 2 months ago committed by GitHub
parent
commit
af578124a5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      dolphinscheduler-ui/src/views/resource/task-group/option/use-table.ts

1
dolphinscheduler-ui/src/views/resource/task-group/option/use-table.ts

@ -147,6 +147,7 @@ export function useTable(
parseTime(item.updateTime),
'yyyy-MM-dd HH:mm:ss'
)
item.status = (item.status == 'YES') ? 1 : 0
return {
...item
}

Loading…
Cancel
Save