You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by st...@apache.org on 2022/09/21 13:44:45 UTC

[superset] branch master updated: fix: pie chart orientation description error (#21514)

This is an automated email from the ASF dual-hosted git repository.

stephenlyz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new c66205feac fix: pie chart orientation description error (#21514)
c66205feac is described below

commit c66205feac118a444e30cd6b6cb48d2c2e3d6411
Author: LiuBodong <li...@126.com>
AuthorDate: Wed Sep 21 21:44:29 2022 +0800

    fix: pie chart orientation description error (#21514)
    
    Co-authored-by: Stephen Liu <75...@qq.com>
---
 superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx b/superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx
index 38eee33e74..f6e8113439 100644
--- a/superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx
+++ b/superset-frontend/plugins/plugin-chart-echarts/src/controls.tsx
@@ -87,7 +87,7 @@ const legendOrientationControl: ControlSetItem = {
     ],
     default: legendOrientation,
     renderTrigger: true,
-    description: t('Legend type'),
+    description: t('Legend Orientation'),
     visibility: ({ controls }: ControlPanelsContainerProps) =>
       Boolean(controls?.show_legend?.value),
   },