Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
Permupop committed Nov 13, 2019
2 parents ef0c943 + 733ac65 commit e9a58b9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions nuxt-firebase-auth-master/pages/community/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,9 @@
<div v-if="communityList.length > 0">
<div v-for="(community, index) in communityList" :key="index">
<nuxt-link :to="`/community/${community.communityId}`">
<!-- communityForm.communityPictureCover==undefined?defaultImage: communityForm.communityPictureCover -->
<community-card
:communityPictureCover="community.communityPictureCover"
:communityPictureCover="community.communityPictureCover==undefined?defaultImage: community.communityPictureCover"
:communityName="community.communityName"
></community-card>
</nuxt-link>
Expand Down Expand Up @@ -148,7 +149,8 @@ export default {
interestTags: [],
communityName: "",
interestTags: [],
categoryList: []
categoryList: [],
defaultImage: "https://www.elegantthemes.com/blog/wp-content/uploads/2017/03/Facebook-Groups-for-Bloggers-shutterstock_555845587-ProStockStudio-FT.png"
};
},
watch: {
Expand Down

0 comments on commit e9a58b9

Please sign in to comment.