From 268a26f6c0cf3971a7b6c10d9dbddc3845c044eb Mon Sep 17 00:00:00 2001 From: Rob Cameron Date: Mon, 19 Oct 2020 12:08:43 -0700 Subject: [PATCH] Include createdAt in blog posts to prevent Storybook error --- web/src/components/BlogPost/BlogPost.stories.js | 1 + web/src/components/BlogPostCell/BlogPostCell.mock.js | 1 + web/src/components/BlogPostsCell/BlogPostsCell.mock.js | 2 ++ 3 files changed, 4 insertions(+) diff --git a/web/src/components/BlogPost/BlogPost.stories.js b/web/src/components/BlogPost/BlogPost.stories.js index 7b46427..3e9af9e 100644 --- a/web/src/components/BlogPost/BlogPost.stories.js +++ b/web/src/components/BlogPost/BlogPost.stories.js @@ -7,6 +7,7 @@ export const generated = () => { id: 1, title: 'First Post', body: 'Neutra tacos hot chicken prism raw denim...', + createdAt: '2020-01-01T12:34:56Z', }} /> ) diff --git a/web/src/components/BlogPostCell/BlogPostCell.mock.js b/web/src/components/BlogPostCell/BlogPostCell.mock.js index e9838b8..c4511f9 100644 --- a/web/src/components/BlogPostCell/BlogPostCell.mock.js +++ b/web/src/components/BlogPostCell/BlogPostCell.mock.js @@ -5,5 +5,6 @@ export const standard = (/* vars, { ctx, req } */) => ({ title: 'First post', body: 'Neutra tacos hot chicken prism raw denim, put a bird on it enamel pin post-ironic vape cred DIY. Street art next level umami squid. Hammock hexagon glossier 8-bit banjo. Neutra la croix mixtape echo park four loko semiotics kitsch forage chambray. Semiotics salvia selfies jianbing hella shaman. Letterpress helvetica vaporware cronut, shaman butcher YOLO poke fixie hoodie gentrify woke heirloom.', + createdAt: '2020-01-01T12:34:56Z', }, }) diff --git a/web/src/components/BlogPostsCell/BlogPostsCell.mock.js b/web/src/components/BlogPostsCell/BlogPostsCell.mock.js index 3719dd0..b4f5b2d 100644 --- a/web/src/components/BlogPostsCell/BlogPostsCell.mock.js +++ b/web/src/components/BlogPostsCell/BlogPostsCell.mock.js @@ -6,12 +6,14 @@ export const standard = (/* vars, { ctx, req } */) => ({ title: 'First post', body: 'Neutra tacos hot chicken prism raw denim, put a bird on it enamel pin post-ironic vape cred DIY. Street art next level umami squid. Hammock hexagon glossier 8-bit banjo. Neutra la croix mixtape echo park four loko semiotics kitsch forage chambray. Semiotics salvia selfies jianbing hella shaman. Letterpress helvetica vaporware cronut, shaman butcher YOLO poke fixie hoodie gentrify woke heirloom.', + createdAt: '2020-01-01T12:34:56Z', }, { id: 2, title: 'Second post', body: 'Master cleanse gentrify irony put a bird on it hexagon enamel pin. Pop-up man braid artisan pug tilde synth lo-fi. Ethical tofu portland keytar waistcoat. Pabst authentic hammock chillwave twee trust fund. Lyft humblebrag ramps irony unicorn.', + createdAt: '2020-01-01T12:34:56Z', }, ], })