Skip to content

Commit

Permalink
fix(stories): correcting props on Axis story
Browse files Browse the repository at this point in the history
The axisAt prop was missing some possible values.
  • Loading branch information
markmcdowell committed Aug 24, 2020
1 parent c3985d5 commit dc48f12
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion packages/stories/src/features/axis/Axis.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import {
import { IOHLCData, withOHLCData } from "../../data";

interface ChartProps extends Partial<YAxisProps> {
readonly axisAt?: "left" | "right";
readonly data: IOHLCData[];
readonly height: number;
readonly ratio: number;
Expand Down
2 changes: 1 addition & 1 deletion packages/stories/src/features/axis/index.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default {
options: ["left", "right", "middle"],
},
},
gridLinesStroke: { control: "color" },
gridLinesStrokeStyle: { control: "color" },
strokeStyle: { control: "color" },
tickLabelFill: { control: "color" },
tickStroke: { control: "color" },
Expand Down

0 comments on commit dc48f12

Please sign in to comment.