feat: display neighbor IP address in device neighbors tab

This commit is contained in:
Graham McIntire 2026-01-21 11:01:48 -06:00
parent cba1f87f8f
commit 8509a4a64c
No known key found for this signature in database

View file

@ -616,6 +616,7 @@
<th class="px-4 py-3 text-left font-medium">Local Port</th>
<th class="px-4 py-3 text-left font-medium">Remote Device</th>
<th class="px-4 py-3 text-left font-medium">Remote Port</th>
<th class="px-4 py-3 text-left font-medium">IP Address</th>
<th class="px-4 py-3 text-left font-medium">Platform</th>
<th class="px-4 py-3 text-left font-medium">Capabilities</th>
<th class="px-4 py-3 text-left font-medium">Last Seen</th>
@ -666,6 +667,9 @@
</div>
<% end %>
</td>
<td class="px-4 py-3 font-mono text-sm text-gray-900 dark:text-white">
{neighbor.remote_address || "-"}
</td>
<td class="px-4 py-3 text-xs text-gray-600 dark:text-gray-400">
{neighbor.remote_platform || "-"}
</td>