summaryrefslogtreecommitdiff
path: root/iridescence/src/components/admin/ProductEditCard.vue
diff options
context:
space:
mode:
Diffstat (limited to 'iridescence/src/components/admin/ProductEditCard.vue')
-rw-r--r--iridescence/src/components/admin/ProductEditCard.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/iridescence/src/components/admin/ProductEditCard.vue b/iridescence/src/components/admin/ProductEditCard.vue
index f8895aa..88d8e91 100644
--- a/iridescence/src/components/admin/ProductEditCard.vue
+++ b/iridescence/src/components/admin/ProductEditCard.vue
@@ -161,7 +161,7 @@ export default {
},
computed: {
thumbnail: function() {
- return process.env.VUE_APP_IMAGE_ROOT + "/" + this.old.photo_thumbnail;
+ return process.env.VUE_APP_IMAGE_ROOT + this.old.photo_thumbnail;
},
old: function() {
return this.$store.getters.products.find(p => p.id == this.oldid) || {};