about summary refs log tree commit diff
path: root/components/Posts/PostLink.stories.js
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2020-01-29 11:49:04 +0100
committerPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2020-01-29 11:49:04 +0100
commit0fc1c2a5e89786c2af7b1ad3f9601865d2fea26d (patch)
tree8d742d2e813bf91a25f445a2a1b0dc62868ffdcb /components/Posts/PostLink.stories.js
parentf7356150011d660b705c9a53018b412555fa3a95 (diff)
downloadpuszcza-0fc1c2a5e89786c2af7b1ad3f9601865d2fea26d.tar.gz
puszcza-0fc1c2a5e89786c2af7b1ad3f9601865d2fea26d.zip
Fix stories
Diffstat (limited to 'components/Posts/PostLink.stories.js')
-rw-r--r--components/Posts/PostLink.stories.js9
1 files changed, 6 insertions, 3 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: `<post-link :title="title" :description="description" :route="route" :image="image"/>`,
+      template: `<post-link :title="title" :description="description" :route="route" :image="meta.image"/>`,
       data: () => postLink,
     }
   })