@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @eeplatform/nuxt-layer-common
2
2
 
3
+ ## 1.7.38
4
+
5
+ ### Patch Changes
6
+
7
+ - ddb3d8b: Fix enrollment preview action
8
+
3
9
  ## 1.7.37
4
10
 
5
11
  ### Patch Changes
@@ -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(() => {
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.37",
5
+ "version": "1.7.38",
6
6
  "main": "./nuxt.config.ts",
7
7
  "publishConfig": {
8
8
  "access": "public"