@eeplatform/nuxt-layer-common 1.7.15 → 1.7.17
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 +12 -0
- package/components/EnrollmentForm.vue +2 -2
- package/composables/useProgram.ts +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -242,7 +242,7 @@
|
|
|
242
242
|
></v-checkbox>
|
|
243
243
|
</v-col>
|
|
244
244
|
|
|
245
|
-
<v-col
|
|
245
|
+
<v-col cols="12">
|
|
246
246
|
<v-row no-gutters>
|
|
247
247
|
<v-col cols="12" class="mt-4">
|
|
248
248
|
<v-row>
|
|
@@ -1267,7 +1267,7 @@
|
|
|
1267
1267
|
</v-row>
|
|
1268
1268
|
</v-col>
|
|
1269
1269
|
|
|
1270
|
-
<v-col
|
|
1270
|
+
<v-col cols="12">
|
|
1271
1271
|
<v-row no-gutters>
|
|
1272
1272
|
<v-col cols="12">
|
|
1273
1273
|
<v-row>
|
|
@@ -23,10 +23,11 @@ export function useProgram() {
|
|
|
23
23
|
limit = 10,
|
|
24
24
|
status = "active",
|
|
25
25
|
school = "",
|
|
26
|
+
gradeLevel = "",
|
|
26
27
|
} = {}) {
|
|
27
28
|
return $fetch<Record<string, any>>(`/api/${resource}`, {
|
|
28
29
|
method: "GET",
|
|
29
|
-
query: { page, limit, search, status, school },
|
|
30
|
+
query: { page, limit, search, status, school, gradeLevel },
|
|
30
31
|
});
|
|
31
32
|
}
|
|
32
33
|
|