@eeplatform/nuxt-layer-common 1.7.24 → 1.7.25
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 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1732,10 +1732,10 @@ const gradeLevelOffering = ref<Record<string, any>[]>([]);
|
|
|
1732
1732
|
const { getAll: getGradeLevels } = useGradeLevel();
|
|
1733
1733
|
|
|
1734
1734
|
const { data: getGradeLevelReq } = await useLazyAsyncData(
|
|
1735
|
-
"get-grade-level-offerings" +
|
|
1736
|
-
() => getGradeLevels({ school:
|
|
1735
|
+
"get-grade-level-offerings" + prop.school,
|
|
1736
|
+
() => getGradeLevels({ school: prop.school, limit: 100 }),
|
|
1737
1737
|
{
|
|
1738
|
-
watch: [() =>
|
|
1738
|
+
watch: [() => prop.school],
|
|
1739
1739
|
}
|
|
1740
1740
|
);
|
|
1741
1741
|
|