Ver código fonte

[backend] Utilisateurs : nom et prénom non affichés dans la liste

refactoring
Guillaume Bourgeois 4 anos atrás
pai
commit
2032360002
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      backend/views/user/index.php

+ 1
- 1
backend/views/user/index.php Ver arquivo

@@ -67,7 +67,7 @@ $this->render('_menu',[
'attribute' => 'username',
'label' => 'Nom',
'value' => function($model) {
if(isset($model['name_legal_person'])) {
if(isset($model['name_legal_person']) && strlen($model['name_legal_person'])) {
return $model['name_legal_person'] ;
}
else {

Carregando…
Cancelar
Salvar