Skip to content

Commit

Permalink
Merge pull request dbarzin#625 from dbarzin/dev
Browse files Browse the repository at this point in the history
fix null cluster
  • Loading branch information
dbarzin authored Feb 6, 2024
2 parents e82412c + cacef73 commit c52d169
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/admin/logicalServers/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class="table-warning"
@endforeach
</td>
<td>
@if ($logicalServer->cluster_id!==null)
@if ($logicalServer->cluster!==null)
<a href="{{ route('admin.clusters.show', $logicalServer->cluster_id) }}">
{{ $logicalServer->cluster->name }}
</a>
Expand Down

0 comments on commit c52d169

Please sign in to comment.