@icvdeveloper/common-module 0.0.60 → 0.0.61

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.60"
4
+ "version": "0.0.61"
5
5
  }
@@ -27,13 +27,13 @@ export default defineNuxtPlugin((nuxtApp) => {
27
27
  // fetch portal config then increment loading indicator
28
28
  await portalStore.getPortal().then(() => NProgress.inc()),
29
29
  // wait for portal config request to complete, then fetch conferences
30
- await conferencesStore.getConferences().then(() => NProgress.inc())
30
+ await conferencesStore.getConferences().then(() => NProgress.inc()),
31
+ // wait for get conferences to complete, then get current conference data.
32
+ await conferencesStore.getCurrentConference().then(() => NProgress.inc())
31
33
  ]);
32
34
  }
33
35
  if (to.name == "events-id") {
34
36
  await conferencesStore.getSelectedConference(to.params.id).then(() => NProgress.inc());
35
- } else {
36
- await conferencesStore.getCurrentConference().then(() => NProgress.inc());
37
37
  }
38
38
  });
39
39
  nuxtApp.$router.afterEach(() => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@icvdeveloper/common-module",
3
- "version": "0.0.60",
3
+ "version": "0.0.61",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "exports": {