From 0fc1c2a5e89786c2af7b1ad3f9601865d2fea26d Mon Sep 17 00:00:00 2001 From: Patryk Niedźwiedziński Date: Wed, 29 Jan 2020 11:49:04 +0100 Subject: Fix stories --- components/Posts/PostLink.stories.js | 9 ++++++--- components/Posts/PostList/PurePostList.stories.js | 4 ++-- 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/components/Posts/PostLink.stories.js b/components/Posts/PostLink.stories.js index 5fdfb6f..723ed4d 100644 --- a/components/Posts/PostLink.stories.js +++ b/components/Posts/PostLink.stories.js @@ -5,11 +5,14 @@ import PostLink from './PostLink' export const postLink = { title: 'Test PostLink', + author: 'Tester', description: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus pulvinar non ex non sagittis. Quisque in enim tellus. Aliquam consequat mi id sapien congue, sit amet vulputate tortor viverra. Donec.', route: '/kronika/2019/20/11/test', - image: - 'https://images.unsplash.com/photo-1573145881456-0708c72340ca?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80', + meta: { + image: + 'https://images.unsplash.com/photo-1573145881456-0708c72340ca?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80', + }, } storiesOf('Posts/PostLink', module) @@ -24,7 +27,7 @@ storiesOf('Posts/PostLink', module) .add('with image', () => { return { components: { PostLink }, - template: ``, + template: ``, data: () => postLink, } }) diff --git a/components/Posts/PostList/PurePostList.stories.js b/components/Posts/PostList/PurePostList.stories.js index a159982..d51a551 100644 --- a/components/Posts/PostList/PurePostList.stories.js +++ b/components/Posts/PostList/PurePostList.stories.js @@ -4,8 +4,8 @@ import { postLink } from '../PostLink.stories' import PurePostList from './PurePostList' -const postLinkNoImage = { ...postLink } -delete postLinkNoImage['image'] +const postLinkNoImage = JSON.parse(JSON.stringify(postLink)) +delete postLinkNoImage.meta['image'] export const posts = [ ...Array(3).fill(postLinkNoImage), -- cgit 1.4.1