Browse Source

UI: Fixed not updated publick image preview when updated image

pull/10016/head
Vladyslav_Prykhodko 3 years ago
parent
commit
9e7f28ff97
  1. 2
      ui-ngx/src/app/shared/components/image/image-dialog.component.ts

2
ui-ngx/src/app/shared/components/image/image-dialog.component.ts

@ -154,7 +154,7 @@ export class ImageDialogComponent extends
this.imageChanged = true;
this.image = result;
this.imagePreviewData = {
url: this.image.public ? this.image.publicLink : this.image.link
url: this.image.public ? `${this.image.publicLink}?ts=${new Date().getTime()}` : this.image.link
};
}
});

Loading…
Cancel
Save