@eeplatform/nuxt-layer-common 1.7.43 → 1.7.44
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/EnrollmentPreview.vue +4 -20
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -99,11 +99,7 @@
|
|
|
99
99
|
</v-col>
|
|
100
100
|
|
|
101
101
|
<!-- Learner Information -->
|
|
102
|
-
<v-col
|
|
103
|
-
cols="12"
|
|
104
|
-
class="mb-6"
|
|
105
|
-
v-if="!localProps.application.returningLearner"
|
|
106
|
-
>
|
|
102
|
+
<v-col cols="12" class="mb-6">
|
|
107
103
|
<v-card variant="outlined" border="thin" class="pa-4">
|
|
108
104
|
<v-card-title class="text-h6 font-weight-bold pa-0 mb-3">
|
|
109
105
|
Learner Information
|
|
@@ -198,11 +194,7 @@
|
|
|
198
194
|
</v-col>
|
|
199
195
|
|
|
200
196
|
<!-- Current Address -->
|
|
201
|
-
<v-col
|
|
202
|
-
cols="12"
|
|
203
|
-
class="mb-6"
|
|
204
|
-
v-if="!localProps.application.returningLearner"
|
|
205
|
-
>
|
|
197
|
+
<v-col cols="12" class="mb-6">
|
|
206
198
|
<v-card variant="outlined" border="thin" class="pa-4">
|
|
207
199
|
<v-card-title class="text-h6 font-weight-bold pa-0 mb-3">
|
|
208
200
|
Current Address
|
|
@@ -252,11 +244,7 @@
|
|
|
252
244
|
</v-col>
|
|
253
245
|
|
|
254
246
|
<!-- Permanent Address -->
|
|
255
|
-
<v-col
|
|
256
|
-
cols="12"
|
|
257
|
-
class="mb-6"
|
|
258
|
-
v-if="!localProps.application.returningLearner"
|
|
259
|
-
>
|
|
247
|
+
<v-col cols="12" class="mb-6">
|
|
260
248
|
<v-card variant="outlined" border="thin" class="pa-4">
|
|
261
249
|
<v-card-title class="text-h6 font-weight-bold pa-0 mb-3">
|
|
262
250
|
Permanent Address
|
|
@@ -313,11 +301,7 @@
|
|
|
313
301
|
</v-col>
|
|
314
302
|
|
|
315
303
|
<!-- Parent/Guardian Information -->
|
|
316
|
-
<v-col
|
|
317
|
-
cols="12"
|
|
318
|
-
class="mb-6"
|
|
319
|
-
v-if="!localProps.application.returningLearner"
|
|
320
|
-
>
|
|
304
|
+
<v-col cols="12" class="mb-6">
|
|
321
305
|
<v-card variant="outlined" border="thin" class="pa-4">
|
|
322
306
|
<v-card-title class="text-h6 font-weight-bold pa-0 mb-3">
|
|
323
307
|
Parent/Guardian Information
|