Skip to content
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.

Commit

Permalink
reverse render order for area and area stroke
Browse files Browse the repository at this point in the history
  • Loading branch information
boygirl committed Jun 27, 2017
1 parent fc294bd commit 8e609d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/victory-primitives/area.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export default class Area extends React.Component {
if (!line) {
return area;
}
const children = [line, area].map((el, i) =>
const children = [area, line].map((el, i) =>
React.cloneElement(el, { key: i })
);
return React.cloneElement(groupComponent, {}, children);
Expand Down

0 comments on commit 8e609d2

Please sign in to comment.