feature: add support for services to use a path

This commit is contained in:
findthelorax
2026-04-19 23:00:32 -04:00
committed by Remy
parent fddfd0a769
commit c7be851c34
8 changed files with 179 additions and 28 deletions
+1 -1
View File
@@ -359,7 +359,7 @@ function PendingDevicesPanel({ onNodeApproved, highlightId }: { onNodeApproved:
<p className="text-xs text-muted-foreground text-center py-4">No pending devices</p>
)}
{devices.map((d) => {
const namedService = d.services.find((s) => s.category != null && !COMMON_PORTS.has(s.port))
const namedService = d.services.find((s) => s.category != null && s.port != null && !COMMON_PORTS.has(s.port))
const titleService = namedService
?? d.services.find((s) => s.port === 80)
?? d.services.find((s) => s.port === 443)