diff options
author | Adam T. Carpenter <atc@53hor.net> | 2020-12-27 16:16:53 -0500 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2020-12-27 16:16:53 -0500 |
commit | 9c02faa06170d7d3140bf252d1dca4630e4b0172 (patch) | |
tree | cc82e2c6044f0acf3f03cd5ac2482c55b7da029a /iridescence/src/components/ProductCard.vue | |
parent | 91b538c776071a7ae60adfa25bfcaccc0403896e (diff) | |
download | theglassyladies-9c02faa06170d7d3140bf252d1dca4630e4b0172.tar.xz theglassyladies-9c02faa06170d7d3140bf252d1dca4630e4b0172.zip |
moved more deploy-specific data to config, finalized login process
Diffstat (limited to 'iridescence/src/components/ProductCard.vue')
-rw-r--r-- | iridescence/src/components/ProductCard.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/iridescence/src/components/ProductCard.vue b/iridescence/src/components/ProductCard.vue index f796f92..144dd9e 100644 --- a/iridescence/src/components/ProductCard.vue +++ b/iridescence/src/components/ProductCard.vue @@ -54,7 +54,7 @@ export default { return "$ " + (this.cents / 100).toFixed(2); }, thumbnail() { - return process.env.VUE_APP_IMAGE_ROOT + "/" + this.photo_thumbnail; + return process.env.VUE_APP_IMAGE_ROOT + this.photo_thumbnail; }, shortDescription() { let description = this.description.split(" "); |