mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:01:08 +08:00
Merge pull request #2654 from storybooks/tmeasday/fix-knobs-dates
Fix the timezone for example dates
This commit is contained in:
commit
9d2c34c8db
@ -68,7 +68,7 @@ storiesOf('Addons|Knobs.withKnobs', module)
|
||||
const nice = boolean('Nice', true);
|
||||
|
||||
// NOTE: the default value must not change - e.g., do not do date('Label', new Date()) or date('Label')
|
||||
const defaultBirthday = new Date('Jan 20 2017');
|
||||
const defaultBirthday = new Date('Jan 20 2017 GMT+0');
|
||||
const birthday = date('Birthday', defaultBirthday);
|
||||
|
||||
const intro = `My name is ${name}, I'm ${age} years old, and my favorite fruit is ${fruit}.`;
|
||||
@ -124,7 +124,7 @@ storiesOf('Addons|Knobs.withKnobsOptions', module)
|
||||
const nice = boolean('Nice', true);
|
||||
|
||||
// NOTE: the default value must not change - e.g., do not do date('Label', new Date()) or date('Label')
|
||||
const defaultBirthday = new Date('Jan 20 2017');
|
||||
const defaultBirthday = new Date('Jan 20 2017 GMT+0');
|
||||
const birthday = date('Birthday', defaultBirthday);
|
||||
|
||||
const intro = `My name is ${name}, I'm ${age} years old, and my favorite fruit is ${fruit}.`;
|
||||
|
Loading…
x
Reference in New Issue
Block a user