@burh/nuxt-core 1.1.16 → 1.1.17
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.
|
@@ -22,7 +22,8 @@
|
|
|
22
22
|
src="/img/recruitment/melissa.svg"
|
|
23
23
|
/>
|
|
24
24
|
</span>
|
|
25
|
-
|
|
25
|
+
|
|
26
|
+
<p v-if="!matchReason" class="notes-title mb-0 notes-melissa-title">
|
|
26
27
|
{{automation.aproved ?
|
|
27
28
|
'Candidato aprovado pela Melissa' :
|
|
28
29
|
'Candidato reprovado pela Melissa'}}
|
|
@@ -910,6 +911,12 @@ export default {
|
|
|
910
911
|
activeTab() {
|
|
911
912
|
let activeTab = this.activeName;
|
|
912
913
|
|
|
914
|
+
if(this.hasMatch){
|
|
915
|
+
activeTab = 'melissa';
|
|
916
|
+
|
|
917
|
+
return activeTab;
|
|
918
|
+
}
|
|
919
|
+
|
|
913
920
|
if (this.jobId && this.companyHasAutomation && this.hasAutomation) {
|
|
914
921
|
if (activeTab == 'history') {
|
|
915
922
|
activeTab = 'melissa';
|
|
@@ -958,6 +965,8 @@ export default {
|
|
|
958
965
|
p{
|
|
959
966
|
font-size: 0.875rem;
|
|
960
967
|
margin: 0;
|
|
968
|
+
word-break: keep-all !important;
|
|
969
|
+
text-align: justify;
|
|
961
970
|
}
|
|
962
971
|
}
|
|
963
972
|
|