mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-31 16:37:27 -08:00
Merge pull request #15757 from akemidx/bug/sc-26944
FIXED: Bulk Delete page not showing full information
This commit is contained in:
commit
8f7223128f
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue