(reportId)
| 2824 | } |
| 2825 | |
| 2826 | function loadReportAnnotation(reportId) { |
| 2827 | if (!reportId) return ""; |
| 2828 | try { |
| 2829 | return window.localStorage.getItem(reportAnnotationKey(reportId)) || ""; |
| 2830 | } catch (error) { |
| 2831 | return ""; |
| 2832 | } |
| 2833 | } |
| 2834 | |
| 2835 | function saveReportAnnotation() { |
| 2836 | const reportId = state.currentReport?.report_id; |
no test coverage detected