project-booster-vue 9.63.10 → 9.63.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "project-booster-vue",
3
- "version": "9.63.10",
3
+ "version": "9.63.11",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -424,7 +424,9 @@ export default defineComponent({
424
424
  * @event media-uploaded
425
425
  * @type {Event}
426
426
  */
427
- this.$emit('media-uploaded', { id: this.uploadedMediaId, name: this.fileName, url: this.mediaPreviewUrl });
427
+ setTimeout(() => {
428
+ this.$emit('media-uploaded', { id: this.uploadedMediaId, name: this.fileName, url: this.mediaPreviewUrl });
429
+ }, 100);
428
430
  this.reset();
429
431
  }
430
432
  },