project-booster-vue 8.115.0 → 8.115.1

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": "8.115.0",
3
+ "version": "8.115.1",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "test:unit": "vue-cli-service test:unit --forceExit --detectOpenHandles",
@@ -375,7 +375,7 @@ export default {
375
375
  },
376
376
 
377
377
  reset() {
378
- this.mediaName = this.media.title ? this.media.title : '';
378
+ this.mediaName = this.media && this.media.title ? this.media.title : '';
379
379
  this.isEditingName = false;
380
380
  this.isDisplayingInfo = false;
381
381
  this.isSharing = false;
@@ -65,7 +65,6 @@
65
65
  </transition>
66
66
  </m-flex>
67
67
  <pb-media-detail
68
- v-if="currentMedia"
69
68
  :namespace="namespace"
70
69
  :media="currentMedia"
71
70
  @click-on-delete="handleClickOnDelete"