Pulse/internal/config
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
..
ai.go fix: guest URL icon now appears/disappears immediately after AI sets/removes it 2025-12-18 14:42:47 +00:00
ai_usage_persistence_test.go feat(ai): Add enriched context with historical trends and predictions 2025-12-12 09:45:57 +00:00
api_tokens.go feat: add Kubernetes platform support 2025-12-12 21:31:11 +00:00
api_tokens_test.go feat: add Kubernetes platform support 2025-12-12 21:31:11 +00:00
client_helpers.go
client_helpers_test.go style: Apply gofmt to 37 files 2025-12-02 17:21:48 +00:00
config.go fix: OIDC env vars ignored when no oidc.enc file exists 2025-12-16 20:25:56 +00:00
config_utils_test.go
detect_root.go
docker_metadata.go wip: AI chat integration with multi-provider support 2025-12-04 20:16:53 +00:00
docker_metadata_test.go
export.go
export_test.go
guest_metadata.go fix: guest URL icon now appears/disappears immediately after AI sets/removes it 2025-12-18 14:42:47 +00:00
guest_metadata_test.go fix: guest URL icon now appears/disappears immediately after AI sets/removes it 2025-12-18 14:42:47 +00:00
host_metadata.go Add AI monitoring enhancements and host metadata features 2025-12-09 16:27:46 +00:00
import_transaction.go
import_transaction_test.go
oidc.go
oidc_test.go test: add regression test for OIDC env vars with nil config (#853) 2025-12-16 21:02:47 +00:00
persistence.go fix(config): avoid deadlock saving empty nodes config 2025-12-17 13:28:06 +00:00
persistence_deadlock_test.go fix(config): avoid deadlock saving empty nodes config 2025-12-17 13:28:06 +00:00
persistence_fail_test.go
persistence_test.go
watcher.go