@burh/nuxt-core 1.0.489 → 1.0.491

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.
@@ -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;
@@ -43,13 +43,10 @@
43
43
  ? 'danger'
44
44
  : 'secondary'
45
45
  "
46
- >Nota: {{ item.avarage }}</badge
46
+ >Nota: {{ item.avarage }}%</badge
47
47
  >
48
48
  </div>
49
49
  <div>
50
- <!-- <el-tooltip v-if="item.started_at && item.finished_at === null" :content="'Teste em andamento'" placement="top" class="px-4">
51
- <i class="fas fa-clock"></i>
52
- </el-tooltip> -->
53
50
  <el-tooltip
54
51
  v-if="item.started_at === null"
55
52
  :content="'Teste enviado'"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burh/nuxt-core",
3
- "version": "1.0.489",
3
+ "version": "1.0.491",
4
4
  "description": "Design System and Components.",
5
5
  "author": "Burh",
6
6
  "scripts": {