@eeplatform/nuxt-layer-common 1.7.22 → 1.7.23
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
CHANGED
|
@@ -1405,7 +1405,9 @@ const enrollment = defineModel<TTLearner>({
|
|
|
1405
1405
|
const { cookieConfig } = useRuntimeConfig().public;
|
|
1406
1406
|
|
|
1407
1407
|
if (prop.school) {
|
|
1408
|
-
|
|
1408
|
+
setTimeout(() => {
|
|
1409
|
+
enrollment.value.schoolId = prop.school ?? "school";
|
|
1410
|
+
}, 1000);
|
|
1409
1411
|
}
|
|
1410
1412
|
|
|
1411
1413
|
enrollment.value.createdBy = useCookie("user", cookieConfig).value ?? "";
|
package/composables/useSchool.ts
CHANGED