Skip to content

Commit

Permalink
Merge pull request #1278 from Wizleap-Inc/fix/vrt-date-pickers
Browse files Browse the repository at this point in the history
docs(date-range-picker): 月初にVRTが落ちる問題を修正
  • Loading branch information
ichi-h authored Jun 18, 2024
2 parents e117914 + 914fa43 commit dd5a11b
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ type Story = StoryObj<typeof WizDateRangePicker>;
export const Default: Story = {
args: {
dateRange: {
start: null,
end: null,
start: new Date("2021-01-15"),
end: new Date("2021-02-15"),
},
},
play: async ({ canvasElement }) => {
Expand Down Expand Up @@ -75,8 +75,8 @@ export const DisabledDate: Story = {
export const Expand: Story = {
args: {
dateRange: {
start: new Date("2021-01-01"),
end: new Date("2021-01-31"),
start: new Date(2000, 0, 15),
end: new Date(2000, 1, 15),
},
expand: true,
},
Expand All @@ -89,8 +89,8 @@ export const Expand: Story = {
export const SelectBoxOptions: Story = {
args: {
dateRange: {
start: null,
end: null,
start: new Date(2000, 0, 15),
end: new Date(2000, 1, 15),
},
selectBoxOptions: [
{ label: "選択肢1", value: "1" },
Expand Down

0 comments on commit dd5a11b

Please sign in to comment.