Commit 7661ccf7 authored by Guilherme Silva's avatar Guilherme Silva
Browse files

Correção de bug ao tentar acessar projeto inexistente

parent 0f886707
......@@ -39,7 +39,7 @@
<div class="col-2 align-self-center">
<div class="row justify-content-around">
<a href="" data-toggle="modal" data-target="#modalSubParticipante{{$participante->id}}" class="button"
@if($substituicoesProjeto->first()->status == 'Em Aguardo') style="pointer-events: none; cursor: default;" @endif>
@if(($substituicoesProjeto->first() != null) && ($substituicoesProjeto->first()->status == 'Em Aguardo')) style="pointer-events: none; cursor: default;" @endif>
<i class="fas fa-exchange-alt fa-2x"></i></a>
<a href="" data-toggle="modal" data-target="#modalVizuParticipante{{$participante->id}}" class="button"><i class="far fa-eye fa-2x"></i></a>
</div>
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment