From 2d434d60f5bc47fb5a23106293f5ee80e9f01e4a Mon Sep 17 00:00:00 2001 From: RunasSudo Date: Sat, 11 Feb 2023 20:24:22 +1100 Subject: [PATCH] Colour streamlined authorities in orange --- html/index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/html/index.html b/html/index.html index 9f77680..273a497 100644 --- a/html/index.html +++ b/html/index.html @@ -24,6 +24,8 @@ @@ -212,7 +214,7 @@ tr.classList.add('table-warning'); } else if (item['benefit_type'] === 'streamlined') { td = document.createElement('td'); td.innerHTML = 'Streamlined'; tr.appendChild(td); - tr.classList.add('table-warning'); + tr.classList.add('bg-orange'); } else if (item['benefit_type'] === 'authority') { td = document.createElement('td'); td.innerHTML = 'Authority'; tr.appendChild(td); tr.classList.add('table-danger');