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

Commit

Permalink
Merge pull request #260 from FormidableLabs/bug/area-render-order
Browse files Browse the repository at this point in the history
reverse render order for area and area stroke
  • Loading branch information
boygirl authored Jun 27, 2017
2 parents fc294bd + 8e609d2 commit 904bd0a
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 904bd0a

Please sign in to comment.