project-booster-vue 8.105.2 → 8.105.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.105.2",
3
+ "version": "8.105.3",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "test:unit": "vue-cli-service test:unit --forceExit --detectOpenHandles",
@@ -25,7 +25,7 @@
25
25
  v-if="payload.viewModel.video"
26
26
  :label="payload.viewModel.video.label"
27
27
  theme="primary"
28
- @click="displayVideoGuide"
28
+ @click="displayVideoGuide('')"
29
29
  />
30
30
  </div>
31
31
  </div>
@@ -215,7 +215,7 @@
215
215
  :theme="payload.viewModel.video.theme"
216
216
  :left-icon="payload.viewModel.video.icon"
217
217
  width="fit"
218
- @click="displayVideo = true"
218
+ @click="displayVideoGuide(dialog.headerTitle)"
219
219
  />
220
220
  </m-flex>
221
221
  </div>
@@ -676,12 +676,14 @@ export default {
676
676
  },
677
677
  });
678
678
  },
679
- displayVideoGuide() {
679
+ displayVideoGuide(origin) {
680
680
  this.displayDialog = true;
681
681
  this.displayVideo = true;
682
682
  this.$store.dispatch('sendEventToBus', {
683
683
  code: 'APPOINTMENT-QUALIFICATION-VIDEO-CLICKED',
684
- payload: {},
684
+ payload: {
685
+ context: origin,
686
+ },
685
687
  });
686
688
  },
687
689
  },