diff --git a/webapp/components/Image/index.vue b/webapp/components/Image/index.vue index de05c5eda..fa95ab345 100644 --- a/webapp/components/Image/index.vue +++ b/webapp/components/Image/index.vue @@ -15,8 +15,8 @@ export default { }, computed: { imageSrc() { - // TODO implement - return 'this should be an image source attribute' + const src = this.imageProps.src + return src.startsWith('/') ? src.replace('/','/api/') : src } } }