You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by ov...@apache.org on 2020/12/16 02:37:16 UTC

[incubator-echarts] branch fix-sort created (now b4788bc)

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

ovilia pushed a change to branch fix-sort
in repository https://gitbox.apache.org/repos/asf/incubator-echarts.git.


      at b4788bc  fix(bar-race): fix default categorySortInfo value bug

This branch includes the following new commits:

     new b4788bc  fix(bar-race): fix default categorySortInfo value bug

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[incubator-echarts] 01/01: fix(bar-race): fix default categorySortInfo value bug

Posted by ov...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ovilia pushed a commit to branch fix-sort
in repository https://gitbox.apache.org/repos/asf/incubator-echarts.git

commit b4788bca8a11fd4aa810e6e06c133c6c4dd21386
Author: Ovilia <zw...@gmail.com>
AuthorDate: Wed Dec 16 10:33:32 2020 +0800

    fix(bar-race): fix default categorySortInfo value bug
    
    categorySortInfo default value changed from [] to undefined in 84ead77
    but extraOption did not change accordingly
---
 src/coord/cartesian/AxisModel.ts | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/src/coord/cartesian/AxisModel.ts b/src/coord/cartesian/AxisModel.ts
index 033eef0..39bc942 100644
--- a/src/coord/cartesian/AxisModel.ts
+++ b/src/coord/cartesian/AxisModel.ts
@@ -60,8 +60,7 @@ zrUtil.mixin(CartesianAxisModel, AxisModelCommonMixin);
 const extraOption: CartesianAxisOption = {
     // gridIndex: 0,
     // gridId: '',
-    offset: 0,
-    categorySortInfo: []
+    offset: 0
 };
 
 axisModelCreator<CartesianAxisOption, typeof CartesianAxisModel>('x', CartesianAxisModel, extraOption);


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org