@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @eeplatform/nuxt-layer-common
2
2
 
3
+ ## 1.7.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 18539d9: Enrollment form - update grade level API request setup
8
+
3
9
  ## 1.7.4
4
10
 
5
11
  ### Patch Changes
@@ -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: [() => enrollment.value.school],
1506
- immediate: false,
1507
+ watch: [enrollmentSchool],
1507
1508
  }
1508
1509
  );
1509
1510
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@eeplatform/nuxt-layer-common",
3
3
  "license": "MIT",
4
4
  "type": "module",
5
- "version": "1.7.4",
5
+ "version": "1.7.5",
6
6
  "main": "./nuxt.config.ts",
7
7
  "publishConfig": {
8
8
  "access": "public"