@eeplatform/nuxt-layer-common 1.7.37 → 1.7.38
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 +5 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -541,10 +541,7 @@
|
|
|
541
541
|
|
|
542
542
|
<v-toolbar class="pa-0" density="compact">
|
|
543
543
|
<v-row no-gutters>
|
|
544
|
-
<v-col
|
|
545
|
-
:cols="localProps.application?.status === 'pending' ? '6' : '12'"
|
|
546
|
-
class="pa-0"
|
|
547
|
-
>
|
|
544
|
+
<v-col :cols="localProps.noAction ? '12' : '6'" class="pa-0">
|
|
548
545
|
<v-btn
|
|
549
546
|
block
|
|
550
547
|
variant="text"
|
|
@@ -605,6 +602,10 @@ const localProps = defineProps({
|
|
|
605
602
|
application: {
|
|
606
603
|
default: () => useEnrollment().enrollment.value,
|
|
607
604
|
},
|
|
605
|
+
noAction: {
|
|
606
|
+
type: Boolean,
|
|
607
|
+
default: false,
|
|
608
|
+
},
|
|
608
609
|
});
|
|
609
610
|
|
|
610
611
|
const placeOfBirth = computed(() => {
|