diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue index af0036ab12..2996f7d731 100644 --- a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue +++ b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/_source/list.vue @@ -19,48 +19,48 @@
+ |
|
- + | {{$t('#')}} | -+ | {{$t('Process Name')}} | -- {{$t('Executor')}} + | + {{$t('State')}} | -+ | {{$t('Run Type')}} | -+ | {{$t('Scheduling Time')}} | -+ | {{$t('Start Time')}} | -+ | {{$t('End Time')}} | -+ | {{$t('Duration')}}s | -+ | {{$t('Run Times')}} | -- {{$t('host')}} - | -+ | {{$t('fault-tolerant sign')}} | -
-
- {{$t('State')}}
+
+ {{$t('host')}}
+ |
+
+ |
-
+ {{$t('Executor')}}
+ |
{{$t('Operation')}}
|
| - {{item.executorName}} - - + | {{_rtRunningType(item.commandType)}} | @@ -91,14 +90,14 @@ | {{item.duration || '-'}} | {{item.runTimes}} | +{{item.recovery}} | {{item.host}} - | -{{item.recovery}} | -- + {{item.executorName}} + - |
diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/index.vue b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/index.vue
index 4a4206218a..d26da294f3 100644
--- a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/index.vue
+++ b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/instance/pages/list/index.vue
@@ -204,6 +204,7 @@
}
.table-box {
.fixed {
+ table-layout: auto;
tr {
th:last-child,td:last-child {
background: inherit;
|
---|