@icvdeveloper/common-module 0.0.124 → 0.0.126

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/dist/module.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "name": "v3plus-common-module",
3
3
  "configKey": "v3plusCommonModule",
4
- "version": "0.0.124"
4
+ "version": "0.0.126"
5
5
  }
@@ -48,7 +48,7 @@ const props = withDefaults(defineProps<Props>(), {
48
48
 
49
49
  const { conference, presentation } = toRefs(props);
50
50
 
51
- const route = ref(useRoute());
51
+ const route = useRoute();
52
52
 
53
53
  const { classBinding } = useClassBinding();
54
54
  const { getSponsors } = useEvents();
@@ -60,8 +60,8 @@ const { isLoggedIn } = storeToRefs(useAuthStore());
60
60
 
61
61
  const isStreamTest = computed((): boolean => {
62
62
  return (
63
- route.value.params.channelid === "stream-test" ||
64
- String(route.value.name) === "stream-test"
63
+ route.params.channelid === "stream-test" ||
64
+ String(route.name) === "stream-test"
65
65
  );
66
66
  });
67
67
 
@@ -174,5 +174,10 @@ const hasAccess = computed((): boolean => {
174
174
  </figure>
175
175
  </div>
176
176
  </div>
177
+ <CommonComponentsSessionReporting
178
+ v-if="!isStreamTest"
179
+ ref="sessionReporting"
180
+ :loggable-id="presentation.id"
181
+ />
177
182
  </div>
178
183
  </template>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icvdeveloper/common-module",
3
- "version": "0.0.124",
3
+ "version": "0.0.126",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "exports": {