@icvdeveloper/common-module 1.2.0 → 1.2.1
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/CHANGELOG.md +2 -0
- package/dist/module.json +1 -1
- package/dist/runtime/store/conferences.mjs +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/module.json
CHANGED
|
@@ -107,6 +107,8 @@ export const useConferencesStore = defineStore("conferences", {
|
|
|
107
107
|
userConferences.forEach((userConf) => {
|
|
108
108
|
const conf = find(this.conferenceList, { id: userConf.id });
|
|
109
109
|
conf.access = true;
|
|
110
|
+
if (conf)
|
|
111
|
+
conf.access = true;
|
|
110
112
|
});
|
|
111
113
|
}
|
|
112
114
|
}
|