Pulse/internal/ai/cost
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
..
pricing.go fix: guest URL icon now appears/disappears immediately after AI sets/removes it 2025-12-18 14:42:47 +00:00
resolve.go Unify provider/model normalization for AI cost export 2025-12-12 13:04:42 +00:00
store.go Clarify AI cost estimates with pricing coverage 2025-12-12 13:19:03 +00:00
store_extended_test.go Add comprehensive AI test coverage 2025-12-16 12:33:06 +00:00
store_test.go Add AI cost export and top target rollups 2025-12-12 12:55:39 +00:00