MCPcopy Create free account
hub / github.com/OpenRaiser/PaperFlow / loadReportCardHighlights

Function loadReportCardHighlights

deployments/desktop/static/desktop.js:2714–2721  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2712 }
2713
2714 function loadReportCardHighlights() {
2715 try {
2716 const parsed = JSON.parse(window.localStorage.getItem(REPORT_HIGHLIGHTS_KEY) || "[]");
2717 state.highlightedReports = new Set(Array.isArray(parsed) ? parsed.filter(Boolean).map(String) : []);
2718 } catch (error) {
2719 state.highlightedReports = new Set();
2720 }
2721 }
2722
2723 function saveReportCardHighlights() {
2724 try {

Callers 1

initFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected