@eeplatform/nuxt-layer-common 1.4.7 → 1.4.8
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 +6 -0
- package/components/EnrollmentForm.vue +4 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1290,6 +1290,10 @@ const enrollment = defineModel<TTLearner>({
|
|
|
1290
1290
|
default: () => useEnrollment().enrollment,
|
|
1291
1291
|
});
|
|
1292
1292
|
|
|
1293
|
+
const { cookieConfig } = useRuntimeConfig().public;
|
|
1294
|
+
|
|
1295
|
+
enrollment.value.createdBy = useCookie("user", cookieConfig).value ?? "";
|
|
1296
|
+
|
|
1293
1297
|
const { getAll: getAllPSGC } = usePSGC();
|
|
1294
1298
|
|
|
1295
1299
|
const region = ref("");
|