Skip to content

Commit

Permalink
fix: remove wrong *
Browse files Browse the repository at this point in the history
  • Loading branch information
igorgoncalves committed Dec 2, 2024
1 parent 31d60e8 commit acb35ff
Show file tree
Hide file tree
Showing 5 changed files with 100 additions and 100 deletions.
4 changes: 2 additions & 2 deletions app/models/InstructorDocumentsAndAddress.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ public function attributeLabels()
'school_inep_id_fk' => Yii::t('default', 'School Inep Id Fk'),
'inep_id' => Yii::t('default', 'Inep'),
'id' => Yii::t('default', 'ID'),
'cpf' => Yii::t('default', 'Cpf') . " *",
'area_of_residence' => Yii::t('default', 'Area Of Residence') . " *",
'cpf' => Yii::t('default', 'Cpf'),
'area_of_residence' => Yii::t('default', 'Area Of Residence'),
'cep' => Yii::t('default', 'Cep'),
'address' => Yii::t('default', 'Address'),
'address_number' => Yii::t('default', 'Address Number'),
Expand Down
2 changes: 1 addition & 1 deletion instance.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
$newdb = $domain . '.tag.ong.br';

if ($domain == "localhost") {
$newdb = 'boquim25/11.tag.ong.br';
$newdb = 'boquim.tag.ong.br';
}

$_GLOBALGROUP = 0;
Expand Down
2 changes: 1 addition & 1 deletion js/student/form/validations.js
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ $(formIdentification + "nationality").change(function () {
.show()
.find("label")
.addClass("required")
.html("Estado *");
.html("Estado");
$(formIdentification + "edcenso_city_fk")
.removeAttr("disabled")
.closest(".js-change-required")
Expand Down
Loading

0 comments on commit acb35ff

Please sign in to comment.