Skip to content

Commit

Permalink
Make node UUID use code to display
Browse files Browse the repository at this point in the history
  • Loading branch information
kokofixcomputers authored Oct 26, 2024
1 parent ce9c305 commit ef343e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/admin/nodes/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<td class="text-center">{{ $node->servers_count }}</td>
<td class="text-center" style="color:{{ ($node->scheme === 'https') ? '#50af51' : '#d9534f' }}"><i class="fa fa-{{ ($node->scheme === 'https') ? 'lock' : 'unlock' }}"></i></td>
<td class="text-center"><i class="fa fa-{{ ($node->public) ? 'eye' : 'eye-slash' }}"></i></td>
<td class="text-center">{{ $node->uuid }}</td>
<td class="text-center"><code title={{ $node->uuid }}>{{ $node->uuid }}</code></td>
</tr>
@endforeach
</tbody>
Expand Down

0 comments on commit ef343e8

Please sign in to comment.