Skip to content

Commit 8f72231

Browse files
authored
Merge pull request #15757 from akemidx/bug/sc-26944
FIXED: Bulk Delete page not showing full information
2 parents d60ac0c + efeef5c commit 8f72231

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

resources/views/hardware/bulk-delete.blade.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@
4343
<td>{{ $asset->present()->name() }}</td>
4444
<td>
4545
@if ($asset->location)
46-
{{ $asset->location->name }}
46+
{{ $asset->location->present()->name() }}
47+
@elseif($asset->rtd_location)
48+
{{ $asset->defaultLoc->present()->name() }}
4749
@endif
4850
</td>
4951
<td>
50-
51-
{{ $asset->assigned_to }}
52-
@if ($asset->assignedTo)
53-
{{ $asset->assignedTo->present()->name()}}
52+
@if ($asset->assigned_to)
53+
{{ $asset->assigned->present()->name() }}
5454
@endif
5555
</td>
5656
</tr>

0 commit comments

Comments
 (0)