fix! скорректирован стиль табов для контактов
This commit is contained in:
parent
c0932cd0df
commit
5cd07bfa90
@ -32,11 +32,15 @@ class="nav-item col overflow-hidden @if ($contactIndex == $currentContactIndex)
|
|||||||
<a class="nav-link d-flex flex-row me-1 border-0 @if ($contactIndex == $currentContactIndex) active text-primary @else py-1 text-dark @endif"
|
<a class="nav-link d-flex flex-row me-1 border-0 @if ($contactIndex == $currentContactIndex) active text-primary @else py-1 text-dark @endif"
|
||||||
aria-current="page" href="#" wire:click="setCurrentContactIndex({{ $contactIndex }})">
|
aria-current="page" href="#" wire:click="setCurrentContactIndex({{ $contactIndex }})">
|
||||||
<i class="bi bi-person-standing"></i>
|
<i class="bi bi-person-standing"></i>
|
||||||
<span class="d-none d-xl-inline text-truncate">
|
<span class="d-inline text-truncate">
|
||||||
@if (array_key_exists($contactIndex, $contactLabels))
|
@if($contactItem['firstName'])
|
||||||
{{ $contactLabels[$contactIndex] }}
|
{{ $contactItem['firstName'] }}
|
||||||
@else
|
@else
|
||||||
Контакт {{ $contactIndex + 1 }}
|
@if (array_key_exists($contactIndex, $contactLabels))
|
||||||
|
{{ $contactLabels[$contactIndex] }}
|
||||||
|
@else
|
||||||
|
Контакт {{ $contactIndex + 1 }}
|
||||||
|
@endif
|
||||||
@endif
|
@endif
|
||||||
</span>
|
</span>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user