Skip to content

Commit

Permalink
Add Acacias's logo as default image on harvestDigest and propertyDige…
Browse files Browse the repository at this point in the history
…st components
  • Loading branch information
mardntas committed Nov 22, 2019
1 parent 9c78b17 commit d83512b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
11 changes: 9 additions & 2 deletions src/components/visualization/HarvestDigest.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<img
style="width:70px; height:70px;"
class="rounded-circle"
src="https://external-content.duckduckgo.com/iu/?u=http%3A%2F%2Fgeographical.co.uk%2Fmedia%2Fk2%2Fitems%2Fcache%2Fbca1dd559f75f65255fb90327f144139_XL.jpg&f=1&nofb=1"
:src="image.default"
alt=""
>
</div>
Expand Down Expand Up @@ -36,7 +36,14 @@ export default {
},
type: Object
}
}
},
data() {
return {
image: {
default: require('@/assets/images/logo.svg')
}
}
},
}
</script>

Expand Down
9 changes: 8 additions & 1 deletion src/components/visualization/PropertyDigest.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<img
style="width:70px; height:70px;"
class="rounded-circle"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/03/Clarence_Burgin_House_Quincy_MA_01.jpg/1200px-Clarence_Burgin_House_Quincy_MA_01.jpg"
:src="image.default"
alt=""
>
</div>
Expand Down Expand Up @@ -36,6 +36,13 @@ export default {
},
type: Object
}
},
data() {
return {
image: {
default: require('@/assets/images/logo.svg')
}
}
}
}
</script>
Expand Down

0 comments on commit d83512b

Please sign in to comment.