about summary refs log tree commit diff
path: root/components
diff options
context:
space:
mode:
authorPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2020-01-29 12:18:04 +0100
committerPatryk Niedźwiedziński <pniedzwiedzinski19@gmail.com>2020-01-29 12:18:04 +0100
commit0a8355312990db95de3aa4e946b907ed0abf5a12 (patch)
tree8f9140f2326df571a6990df6e9cbd1525f19e374 /components
parent0fc1c2a5e89786c2af7b1ad3f9601865d2fea26d (diff)
downloadpuszcza-0a8355312990db95de3aa4e946b907ed0abf5a12.tar.gz
puszcza-0a8355312990db95de3aa4e946b907ed0abf5a12.zip
Fix snapshots
Diffstat (limited to 'components')
-rw-r--r--components/Posts/PostLink.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/Posts/PostLink.vue b/components/Posts/PostLink.vue
index 0361b80..b7bfab4 100644
--- a/components/Posts/PostLink.vue
+++ b/components/Posts/PostLink.vue
@@ -1,6 +1,6 @@
 <template>
   <div class="post-link">
-    <nuxt-link :to="route">
+    <nuxt-link :to="route" no-prefetch>
       <div>
         <div class="image" :style="`background-image: url('${image}')`" />
         <div class="post-container">
@@ -31,7 +31,7 @@ export default {
     image: {
       type: String,
       required: false,
-      default: () => '/assets/og/default.jpg',
+      default: '/assets/og/default.jpg',
     },
   },
   computed: {