(entries)
| 3384 | return; |
| 3385 | } |
| 3386 | } |
| 3387 | } |
| 3388 | |
| 3389 | function setReportLinks(report) { |
| 3390 | const map = { |
| 3391 | openReportAbsBtn: report.abs_url || report.url || "", |
| 3392 | openReportPdfBtn: report.pdf_url || "", |
| 3393 | openReportDocBtn: report.doc_url || "", |
| 3394 | copyReportPathBtn: report.report_path || "" |
| 3395 | }; |
| 3396 | Object.entries(map).forEach(([id, value]) => { |
| 3397 | const button = $(id); |
| 3398 | button.disabled = !value; |
| 3399 | button.dataset.href = value; |
| 3400 | }); |
no outgoing calls
no test coverage detected