diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-01-29 12:22:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-29 12:22:09 +0100 |
commit | 3e5f329cd8c9692e24f5fd56a5e4189bf2202e0d (patch) | |
tree | 8f9140f2326df571a6990df6e9cbd1525f19e374 /components/Posts/PostLink.stories.js | |
parent | 3c2ac6715dfffc2eda38e014ed0b4986ccc7f75a (diff) | |
parent | 0a8355312990db95de3aa4e946b907ed0abf5a12 (diff) | |
download | puszcza-3e5f329cd8c9692e24f5fd56a5e4189bf2202e0d.tar.gz puszcza-3e5f329cd8c9692e24f5fd56a5e4189bf2202e0d.zip |
Merge pull request #26 from 19pdh/feature/json-api
Feature/json api
Diffstat (limited to 'components/Posts/PostLink.stories.js')
-rw-r--r-- | components/Posts/PostLink.stories.js | 9 |
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, } }) |