diff --git a/webapp/components/Image/index.vue b/webapp/components/Image/index.vue index fa95ab345..e2f504578 100644 --- a/webapp/components/Image/index.vue +++ b/webapp/components/Image/index.vue @@ -16,7 +16,7 @@ export default { computed: { imageSrc() { const src = this.imageProps.src - return src.startsWith('/') ? src.replace('/','/api/') : src + return src.startsWith('/') ? src.replace('/', '/api/') : src } } }