Skip to content

Commit

Permalink
Change concatenation to literals
Browse files Browse the repository at this point in the history
  • Loading branch information
SZCZUPAK Valentin committed Jun 18, 2021
1 parent 708719b commit 2bc02a3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -495,7 +495,7 @@
DropzoneMap.savedImage(newImage.image_id),
);
const imageUpdateTime = new Date();
imageElement.src = newImage.image_url + '?' + imageUpdateTime.getTime();
imageElement.src = `${newImage.image_url}?${imageUpdateTime.getTime()}`;
$.growl({message: this.$t('window.imageReplaced')});
this.buttonLoading = false;
Expand Down

0 comments on commit 2bc02a3

Please sign in to comment.