project-booster-vue 8.115.0 → 8.115.4

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.4",
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"
@@ -54,10 +54,11 @@
54
54
  @click="skipQuestion"
55
55
  />
56
56
  <m-button
57
- v-if="hasSelectedAnswers"
57
+ v-if="hasSelectedAnswers || payload.multiSelect.alwaysDisplayMultiSelectButton"
58
58
  class="pb-list-select__validate-button"
59
59
  size="m"
60
60
  size-from-l="l"
61
+ :disabled="!hasSelectedAnswers"
61
62
  :label="validateButtonProps.label"
62
63
  :left-icon="validateButtonProps.leftIcon"
63
64
  :right-icon="validateButtonProps.rightIcon"
@@ -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) => {