summaryrefslogtreecommitdiff
path: root/iridescence/src/components/admin/ProductEditCard.vue
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2020-12-27 16:16:53 -0500
committerAdam T. Carpenter <atc@53hor.net>2020-12-27 16:16:53 -0500
commit9c02faa06170d7d3140bf252d1dca4630e4b0172 (patch)
treecc82e2c6044f0acf3f03cd5ac2482c55b7da029a /iridescence/src/components/admin/ProductEditCard.vue
parent91b538c776071a7ae60adfa25bfcaccc0403896e (diff)
downloadtheglassyladies-9c02faa06170d7d3140bf252d1dca4630e4b0172.tar.xz
theglassyladies-9c02faa06170d7d3140bf252d1dca4630e4b0172.zip
moved more deploy-specific data to config, finalized login process
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) || {};