From 0ce9393421c4d06851ea79444c9c875aa8e68a7f Mon Sep 17 00:00:00 2001 From: break60 <790061044@qq.com> Date: Mon, 28 Oct 2019 17:41:16 +0800 Subject: [PATCH] The value of loadaverage should be two decimal places (#1103) * Dependency workflow add dependency correction value * Download workflow instance map width adjustment and change "desc" field to "description" * The third-party library that builds the dependency is recommended to be placed in 'devDependencies' * Tree chart and Gantt chart style modification * The workflow instance can be deleted only when its status is success, failure, stop and pause. * change desc to description * Maximum width of tooltip is set to 500px, note the copyright number of login page * Delete copyright number * No tenant in the list of selected tenants the default is default, and the status not shown in the repair page * repair * Repair security center module prompt * Remove blank character during verification * Remove blank character during verification * Non admin users cannot create users, tenants, alarm groups, queues and worker groups * Remove CI windows detection * The value of loadaverage should be two decimal places --- .../src/js/conf/home/pages/monitor/pages/servers/master.vue | 2 +- .../src/js/conf/home/pages/monitor/pages/servers/worker.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/master.vue b/dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/master.vue index c8a100b5f0..e2a7d0c561 100644 --- a/dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/master.vue +++ b/dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/master.vue @@ -48,7 +48,7 @@
- {{item.resInfo.loadAverage}} + {{item.resInfo.loadAverage > 0? item.resInfo.loadAverage.toFixed(2):0}}
loadAverage diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/worker.vue b/dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/worker.vue index 0295b53823..758dd4807b 100644 --- a/dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/worker.vue +++ b/dolphinscheduler-ui/src/js/conf/home/pages/monitor/pages/servers/worker.vue @@ -48,7 +48,7 @@
- {{item.resInfo.loadAverage}} + {{item.resInfo.loadAverage > 0? item.resInfo.loadAverage.toFixed(2):0}}
loadAverage