(pct)
| 375 | } |
| 376 | |
| 377 | function stabilityLabel(pct) { |
| 378 | if (pct >= 90) return "Very Stable"; |
| 379 | if (pct >= 70) return "Stable"; |
| 380 | if (pct >= 50) return "Moderate"; |
| 381 | return "Variable"; |
| 382 | } |
| 383 | |
| 384 | export function applyStemPresenceCards(stemPresence) { |
| 385 | const cards = document.querySelectorAll(".stem-presence-panel .stem-card"); |
no outgoing calls
no test coverage detected