Pulse/frontend-modern/src/types
rcourtman 558b5a6ccd fix: guest URL icon now appears/disappears immediately after AI sets/removes it
The issue was a SolidJS reactivity problem in the Dashboard component.
When guestMetadata signal was accessed inside a For loop callback and
assigned to a plain variable, SolidJS lost reactive tracking.

Changed from:
  const metadata = guestMetadata()[guestId] || ...
  customUrl={metadata?.customUrl}

To:
  const getMetadata = () => guestMetadata()[guestId] || ...
  customUrl={getMetadata()?.customUrl}

This ensures SolidJS properly tracks the signal dependency when the
getter function is called directly in JSX props.
2025-12-18 14:42:47 +00:00
..
__tests__ feat: AI integration, Docker metrics, RAID display, and infrastructure improvements 2025-12-09 09:29:27 +00:00
ai.ts fix: guest URL icon now appears/disappears immediately after AI sets/removes it 2025-12-18 14:42:47 +00:00
aiIntelligence.ts feat(frontend): Add AI intelligence API types and methods 2025-12-12 14:53:53 +00:00
alerts.ts feat: configurable backup freshness thresholds for dashboard indicator 2025-12-16 16:36:08 +00:00
api.ts feat: frontend support for linked host agents and PVE nodes 2025-12-13 23:16:48 +00:00
backups.ts Fix settings security tab navigation 2025-10-11 23:29:47 +00:00
config.ts Implement UI toggle for Hide Local Login (related to issue #750) 2025-11-25 08:14:19 +00:00
nodes.ts feat: AI features, agent improvements, and host monitoring enhancements 2025-12-05 10:37:02 +00:00
resource.ts feat: add Kubernetes platform support 2025-12-12 21:31:11 +00:00
responsive.ts feat: improve responsive table layout with tighter columns 2025-11-25 20:37:28 +00:00