Merge pull request #2654 from storybooks/tmeasday/fix-knobs-dates

Fix the timezone for example dates
This commit is contained in:
Filipp Riabchun 2018-01-05 04:25:50 +03:00 committed by GitHub
commit 9d2c34c8db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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}.`;