From 9c02faa06170d7d3140bf252d1dca4630e4b0172 Mon Sep 17 00:00:00 2001 From: "Adam T. Carpenter" Date: Sun, 27 Dec 2020 16:16:53 -0500 Subject: moved more deploy-specific data to config, finalized login process --- iridescence/src/components/admin/ProductEditCard.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'iridescence/src/components/admin/ProductEditCard.vue') 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) || {}; -- cgit v1.2.3