Reverse the order highlighted points are rendered in charts (https://github.com/woocommerce/woocommerce-admin/pull/701)

This commit is contained in:
Albert Juhé Lluveras 2018-10-26 16:47:44 +02:00 committed by GitHub
parent 9c0dd84677
commit eda609126e
1 changed files with 1 additions and 1 deletions

View File

@ -653,7 +653,7 @@ export const drawLines = ( node, data, params ) => {
focusGrid
.selectAll( 'circle' )
.data( d => d.values )
.data( d => d.values.reverse() )
.enter()
.append( 'circle' )
.attr( 'r', dotRadius + 2 )