Merge pull request #15757 from akemidx/bug/sc-26944

FIXED: Bulk Delete page not showing full information
This commit is contained in:
snipe 2024-11-19 12:34:57 +00:00 committed by GitHub
commit 8f7223128f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -43,14 +43,14 @@
<td>{{ $asset->present()->name() }}</td>
<td>
@if ($asset->location)
{{ $asset->location->name }}
{{ $asset->location->present()->name() }}
@elseif($asset->rtd_location)
{{ $asset->defaultLoc->present()->name() }}
@endif
</td>
<td>
{{ $asset->assigned_to }}
@if ($asset->assignedTo)
{{ $asset->assignedTo->present()->name()}}
@if ($asset->assigned_to)
{{ $asset->assigned->present()->name() }}
@endif
</td>
</tr>