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

Commit

Permalink
switch defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
Kylie Stewart committed Jan 29, 2018
1 parent 1e360cd commit 0883545
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/victory-primitives/candle.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default class Candle extends React.Component {
const role = props.role || "presentation";
const lowWick = Math.min(close, open);
const highWick = Math.max(close, open);
const wickStyle = defaults({}, this.style, { strokeWidth: wickStrokeWidth });
const wickStyle = defaults({ strokeWidth: wickStrokeWidth }, this.style);
return assign({
x1: x,
x2: x,
Expand Down

0 comments on commit 0883545

Please sign in to comment.