@burh/nuxt-core 1.0.488 → 1.0.490

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.
@@ -53,7 +53,7 @@
53
53
 
54
54
  <div
55
55
  class="deficiency title-block mt-3 ml-4"
56
- v-if="userData.deficiency"
56
+ v-if="userData.deficiency && userData.deficiency.length > 0"
57
57
  >
58
58
  <div class="d-flex align-items-center">
59
59
  <i class="fas fa-wheelchair"></i>
@@ -29,7 +29,7 @@
29
29
  </div>
30
30
  <div class="notes-text-melissa pt-2">
31
31
  <span class="mt-2">
32
- {{ automation.vehicle_license.vehicle_license ? "Sim" : "Não" }}
32
+ {{ Boolean(automation.vehicle_license.vehicle_license) ? "Sim" : "Não" }}
33
33
  <span v-if="automation.vehicle_license.vehicle_license_approved">
34
34
  &#x2705;
35
35
  </span>
@@ -49,7 +49,7 @@
49
49
  </div>
50
50
  <div class="notes-text-melissa pt-2">
51
51
  <span class="mt-2">
52
- {{ automation.city.city ? "Sim" : "Não" }}
52
+ {{ Boolean(automation.city.city) ? "Sim" : "Não" }}
53
53
  <span v-if="automation.city.city_approved">
54
54
  &#x2705;
55
55
  </span>
@@ -69,7 +69,7 @@
69
69
  </div>
70
70
  <div class="notes-text-melissa pt-2">
71
71
  <span class="mt-2">
72
- {{ automation.urgent_hiring.urgent_hiring ? "Sim" : "Não" }}
72
+ {{ Boolean(automation.urgent_hiring.urgent_hiring) ? "Sim" : "Não" }}
73
73
  <span v-if="automation.urgent_hiring.urgent_hiring_approved">
74
74
  &#x2705;
75
75
  </span>
@@ -89,7 +89,7 @@
89
89
  </div>
90
90
  <div class="notes-text-melissa pt-2">
91
91
  <span class="mt-2">
92
- {{ automation.school_formation.school_formation ? "Sim" : "Não" }}
92
+ {{ Boolean(automation.school_formation.school_formation) ? "Sim" : "Não" }}
93
93
 
94
94
  <span v-if="automation.school_formation.school_formation_approved">
95
95
  &#x2705;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burh/nuxt-core",
3
- "version": "1.0.488",
3
+ "version": "1.0.490",
4
4
  "description": "Design System and Components.",
5
5
  "author": "Burh",
6
6
  "scripts": {