(status)
| 765 | } |
| 766 | |
| 767 | function checkIcon(status) { |
| 768 | if (status === "ok") return "✓"; |
| 769 | if (status === "warn") return "!"; |
| 770 | if (status === "fail") return "✕"; |
| 771 | return "•"; |
| 772 | } |
| 773 | function checkAction(c) { |
| 774 | if (!c.action) return ""; |
| 775 | const opts = c.status === "fail" ? { primary: true } : {}; |