Browse Source

dag download does not refresh, modify the task instance operation width value

pull/3/MERGE
break60 4 years ago
parent
commit
92b915edab
  1. 8
      dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/plugIn/downChart.js
  2. 2
      dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/taskInstance/_source/list.vue
  3. 4
      dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/taskInstance/index.vue

8
dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/plugIn/downChart.js vendored

@ -111,10 +111,10 @@ DownChart.prototype.download = function ({ dagThis }) {
}, 100)
// To refresh the dag instance, otherwise you can't re-plot
setTimeout(() => {
// Refresh current dag
findComponentDownward(this.dag.$root, `${this.dag.type}-details`).init()
}, 500)
// setTimeout(() => {
// // Refresh current dag
// findComponentDownward(this.dag.$root, `${this.dag.type}-details`).init()
// }, 500)
})
})
}

2
dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/taskInstance/_source/list.vue

@ -57,7 +57,7 @@
<span>{{$t('Retry Count')}}</span>
</div>
</th>
<th scope="col" style="min-width: 50px">
<th scope="col" style="min-width: 60px">
<span>{{$t('Operation')}}</span>
</th>
</tr>

4
dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/taskInstance/index.vue

@ -171,7 +171,7 @@
tr {
th:last-child,td:last-child {
background: inherit;
width: 50px;
width: 60px;
height: 40px;
line-height: 40px;
border-left:1px solid #ecf3ff;
@ -183,7 +183,7 @@
border-bottom:1px solid #ecf3ff;
}
th:nth-last-child(2) {
padding-right: 80px;
padding-right: 90px;
}
}
}

Loading…
Cancel
Save