()
| 2721 | } |
| 2722 | |
| 2723 | function saveReportCardHighlights() { |
| 2724 | try { |
| 2725 | window.localStorage.setItem(REPORT_HIGHLIGHTS_KEY, JSON.stringify([...state.highlightedReports])); |
| 2726 | } catch (error) { |
| 2727 | console.warn("Unable to save report card highlights", error); |
| 2728 | } |
| 2729 | } |
| 2730 | |
| 2731 | function toggleReportCardHighlight(reportId) { |
| 2732 | if (!reportId) return; |
no outgoing calls
no test coverage detected