From 84cef1949bea46384fecb8877387808e15f5b2c4 Mon Sep 17 00:00:00 2001 From: joan Date: Thu, 4 Feb 2021 18:28:58 +0100 Subject: [PATCH] Image size fix --- modules/worker/front/descriptor/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/worker/front/descriptor/index.js b/modules/worker/front/descriptor/index.js index c5dc1ea2c..260d3f612 100644 --- a/modules/worker/front/descriptor/index.js +++ b/modules/worker/front/descriptor/index.js @@ -57,7 +57,7 @@ class Controller extends Descriptor { onUploadResponse() { const timestamp = new Date().getTime(); const src = this.$rootScope.imagePath('user', '520x520', this.worker.id); - const zoomSrc = this.$rootScope.imagePath('user', '1600x900', this.worker.id); + const zoomSrc = this.$rootScope.imagePath('user', '1600x1600', this.worker.id); const newSrc = `${src}&t=${timestamp}`; const newZoomSrc = `${zoomSrc}&t=${timestamp}`;