about summary refs log tree commit diff
path: root/components/Posts/PostList/PurePostList.vue
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2020-01-28 19:42:12 +0100
committerPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2020-01-28 19:42:12 +0100
commit4ffad967152136c69f1ef904dcfb02270a7e57a1 (patch)
tree567077e1a50d4e46d714b55b153f4aeb32974663 /components/Posts/PostList/PurePostList.vue
parent0ed99e6c969119440b333cc961f4c312ee62731b (diff)
parent5305c18b05803bf0d032027e645c71ac59627621 (diff)
downloadpuszcza-4ffad967152136c69f1ef904dcfb02270a7e57a1.tar.gz
puszcza-4ffad967152136c69f1ef904dcfb02270a7e57a1.zip
Merge remote-tracking branch 'origin/develop' into feature/json-api
Diffstat (limited to 'components/Posts/PostList/PurePostList.vue')
-rw-r--r--components/Posts/PostList/PurePostList.vue9
1 files changed, 5 insertions, 4 deletions
diff --git a/components/Posts/PostList/PurePostList.vue b/components/Posts/PostList/PurePostList.vue
index ace069f..c87b9dc 100644
--- a/components/Posts/PostList/PurePostList.vue
+++ b/components/Posts/PostList/PurePostList.vue
@@ -12,6 +12,7 @@
           :route="post.route"
           :title="post.title"
           :description="post.description"
+          :image="post.image"
         />
       </div>
     </transition>
@@ -27,14 +28,14 @@ export default {
   props: {
     posts: {
       type: Array,
-      required: true
+      required: true,
     },
     loading: {
       type: Boolean,
       required: false,
-      default: () => false
-    }
-  }
+      default: () => false,
+    },
+  },
 }
 </script>