@eeplatform/nuxt-layer-common 1.7.4 → 1.7.5
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 +3 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1494,6 +1494,8 @@ const { getAll } = useProgram();
|
|
|
1494
1494
|
|
|
1495
1495
|
const programs = ref<Array<Record<string, any>>>([]);
|
|
1496
1496
|
|
|
1497
|
+
const enrollmentSchool = computed(() => enrollment.value.school);
|
|
1498
|
+
|
|
1497
1499
|
const { data: getPrograms } = await useLazyAsyncData(
|
|
1498
1500
|
`get-programs-as-options-enrollment-form`,
|
|
1499
1501
|
() =>
|
|
@@ -1502,8 +1504,7 @@ const { data: getPrograms } = await useLazyAsyncData(
|
|
|
1502
1504
|
school: enrollment.value.school,
|
|
1503
1505
|
}),
|
|
1504
1506
|
{
|
|
1505
|
-
watch: [
|
|
1506
|
-
immediate: false,
|
|
1507
|
+
watch: [enrollmentSchool],
|
|
1507
1508
|
}
|
|
1508
1509
|
);
|
|
1509
1510
|
|