From ef89e7371cbc8a6e51779fb4546f3f4c5a89fdfa Mon Sep 17 00:00:00 2001 From: "Captain.B" Date: Wed, 23 Sep 2020 18:49:27 +0800 Subject: [PATCH 1/2] =?UTF-8?q?fix(=E6=80=A7=E8=83=BD=E6=B5=8B=E8=AF=95):?= =?UTF-8?q?=20=E4=BF=AE=E5=A4=8D=E6=80=A7=E8=83=BD=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E5=9B=BE=E8=A1=A8=E4=B8=8A=E7=9A=84legend=20=E5=A4=AA=E5=A4=9A?= =?UTF-8?q?=E4=B8=8D=E6=98=BE=E7=A4=BA=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (cherry picked from commit 80e5b2c4f5a07d1ee62bcb7de4951591d13ed882) --- frontend/src/business/components/common/chart/MsChart.vue | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/frontend/src/business/components/common/chart/MsChart.vue b/frontend/src/business/components/common/chart/MsChart.vue index 1d42f3f736..4e0cc67f95 100644 --- a/frontend/src/business/components/common/chart/MsChart.vue +++ b/frontend/src/business/components/common/chart/MsChart.vue @@ -29,9 +29,10 @@ export default { mounted() { this.defaultInitOptions = this.defaultInitOptions || {}; // 默认渲染svg - if (!this.defaultInitOptions.renderer) { - this.defaultInitOptions.renderer = 'svg'; - } + // BUG: 渲染svg之后 图上的legend 太多会不显示 + // if (!this.defaultInitOptions.renderer) { + // this.defaultInitOptions.renderer = 'svg'; + // } } } From 14d1d292453a0a6ce18daa845b6bfb7e4046d25f Mon Sep 17 00:00:00 2001 From: "Captain.B" Date: Thu, 24 Sep 2020 21:59:14 +0800 Subject: [PATCH 2/2] =?UTF-8?q?refactor:=20=E4=BF=AE=E6=94=B9=E7=94=A8?= =?UTF-8?q?=E4=BE=8B=E8=AF=84=E5=AE=A1=E8=AF=84=E8=AE=BA=E9=A1=B5=E9=9D=A2?= =?UTF-8?q?=E9=AB=98=E5=BA=A6=E8=AE=BE=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../business/components/track/review/commom/ReviewComment.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/business/components/track/review/commom/ReviewComment.vue b/frontend/src/business/components/track/review/commom/ReviewComment.vue index a25846814b..0733a0235e 100644 --- a/frontend/src/business/components/track/review/commom/ReviewComment.vue +++ b/frontend/src/business/components/track/review/commom/ReviewComment.vue @@ -72,6 +72,6 @@ export default { .comment-list { overflow-y: scroll; - height: calc(70vh); + height: calc(100vh - 250px); }