project-booster-vue 8.114.0 → 8.115.3

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.114.0",
3
+ "version": "8.115.3",
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"
@@ -159,6 +159,10 @@ export default {
159
159
 
160
160
  .mc-toggle {
161
161
  @include set-font-face('regular');
162
+
163
+ &__label {
164
+ padding-left: $mu400 !important;
165
+ }
162
166
  }
163
167
  </style>
164
168
 
@@ -53,7 +53,7 @@
53
53
  rel="noopener noreferrer"
54
54
  :label="call.label"
55
55
  :left-icon="call.icon"
56
- :theme="theme === 'light' ? 'primary' : 'light'"
56
+ :theme="call.theme ? call.theme : theme === 'light' ? 'primary' : 'light'"
57
57
  @click="callAction(call)"
58
58
  />
59
59
  </m-flex>
@@ -12,7 +12,13 @@
12
12
  ratio="16x9"
13
13
  />
14
14
  <m-flex
15
- v-if="tempTask.viewModel.completions && tempTask.state && tempTask.state.enabled && !tempTask.state.done"
15
+ v-if="
16
+ tempTask.viewModel.completions &&
17
+ tempTask.state &&
18
+ tempTask.state.enabled &&
19
+ !tempTask.state.done &&
20
+ tempTask.id
21
+ "
16
22
  class="pb-task-details__header-action"
17
23
  gap="0.5rem"
18
24
  >
@@ -219,8 +219,8 @@ export default {
219
219
  };
220
220
  try {
221
221
  const event = {
222
- inhabitantProjectId: clickedCardInfo.project.project.id,
223
- businessUnit: clickedCardInfo.project.project.businessUnit,
222
+ inhabitantProjectId: clickedCardInfo.project.id,
223
+ businessUnit: clickedCardInfo.project.businessUnit,
224
224
  section: clickedCardInfo.section,
225
225
  clickedCard: formatCard(clickedCardInfo.product),
226
226
  possibleCards: state.products[clickedCardInfo.section].map((card) => {