From 23d7955eab01df4128039812fb7216de9441c551 Mon Sep 17 00:00:00 2001 From: ejunga Date: Mon, 21 Apr 2025 15:16:22 -0400 Subject: [PATCH 01/20] Add regex-report for regex matching highlights --- tdx-enhanced.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index ca10fe2..d4c39bc 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -733,6 +733,12 @@ } } + if (type=="report" && customType=="report-regex") { + if ((new RegExp(customHighlight.value).exec(txt))) { + style = customHighlight.style + } + } + if (type=="person" && customType=="person") { if (customHighlight.value==txt) { element = createHighlightBubble(element) From d0a99bcf179add020f2f33526b7efc4087bc9820 Mon Sep 17 00:00:00 2001 From: ejunga Date: Tue, 22 Apr 2025 12:51:53 -0400 Subject: [PATCH 02/20] Add highlight toggle for block/text highlight --- tdx-enhanced.js | 27 ++++++++++++++++++++++----- 1 file changed, 22 insertions(+), 5 deletions(-) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index ca10fe2..8ae7daf 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -686,6 +686,7 @@ } function handleHighlight(type, txt, element) { + let behavior = settings('get','highlightBehavior') var re var style = null @@ -745,11 +746,19 @@ //console.log("Apply custom highlight:",txt) let link = element.querySelector("a") - if (re && link) { - let newTitle = re[1] - link.innerText = newTitle - //reset regex - re.lastIndex = 0 + if (behavior==="block") { + if (re && link) { + let newTitle = re[1] + link.innerText = newTitle + //reset regex + re.lastIndex = 0 + } + } else { + if (re && link) { + element = link + //reset regex + re.lastIndex = 0 + } } for (const [attr,val] of Object.entries(style)) { @@ -1060,6 +1069,13 @@ +
+

Highlight Behavior

+ +
+ +
+
@@ -1190,6 +1206,7 @@ data = { colorMode: getColorMode(), linkBehavior: "tabs", + highlightBehavior: "block", customHighlights: [], } } From a7d0d14194e2ab4bc20c1cff15fb36f1af18d904 Mon Sep 17 00:00:00 2001 From: ejunga Date: Mon, 2 Jun 2025 08:46:54 -0400 Subject: [PATCH 03/20] Update to match reports in new dashboard --- tdx-enhanced.js | 1 + 1 file changed, 1 insertion(+) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index dce2982..d205ee0 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -1064,6 +1064,7 @@ if (type=="report" && customType=="report-regex") { if ((new RegExp(customHighlight.value).exec(txt))) { + element.classList.add("reportTitle") style = customHighlight.style } } From c96357be75615695cba500ba086f8e75ad1fe38d Mon Sep 17 00:00:00 2001 From: ejunga Date: Mon, 2 Jun 2025 11:13:57 -0400 Subject: [PATCH 04/20] Fix text highlighting for tdx update --- tdx-enhanced.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index 3fd7a1f..e34ce7f 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -1084,7 +1084,11 @@ } } else { if (re && link) { - element = link + let text = link.innerText + link.innerText = "" + element = link.appendChild(document.createElement("span")) + element.innerText = text + element.style.lineHeight = "1.4" //reset regex re.lastIndex = 0 } From 07c8e41ff1f7addc9810058e200078663f0b0201 Mon Sep 17 00:00:00 2001 From: ejunga Date: Mon, 21 Jul 2025 08:28:12 -0400 Subject: [PATCH 05/20] Add highlights.json --- highlights.json | 109 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 highlights.json diff --git a/highlights.json b/highlights.json new file mode 100644 index 0000000..a61def2 --- /dev/null +++ b/highlights.json @@ -0,0 +1,109 @@ +[ + { + "style": { + "background": "#412264", + "color": "#FFFFFF" + }, + "type": "person", + "value": "Ethan Mesecar" + }, + { + "style": { + "background": "#285c65", + "color": "#FFFFFF" + }, + "type": "person", + "value": "Justice Johnson" + }, + { + "style": { + "background": "#27f9bb", + "color": "#000000" + }, + "type": "person", + "value": "Elijah Junga" + }, + { + "style": { + "background": "#e63ab4", + "color": "#000000" + }, + "type": "person", + "value": "Deon Murray" + }, + { + "style": { + "background": "#b886d2", + "color": "#000000" + }, + "type": "person", + "value": "Andrea Gajic" + }, + { + "style": { + "background": "#a759f9", + "color": "#000000" + }, + "type": "person", + "value": "Omar Mostafa" + }, + { + "style": { + "background": "#e0c200", + "color": "#000000" + }, + "type": "person", + "value": "Trae Richardson" + }, + { + "style": { + "background": "#ff8c00", + "color": "#000000" + }, + "type": "person", + "value": "Elijah Beard" + }, + { + "style": { + "background": "#117e7e" + }, + "type": "regex-report", + "value": ".*" + }, + { + "style": { + "background": "#1f117c" + }, + "type": "report", + "value": "[Aa]ssigned" + }, + { + "style": { + "background": "#117c1f" + }, + "type": "report", + "value": "[Uu]nassigned" + }, + { + "style": { + "background": "#86297b" + }, + "type": "report", + "value": "[Oo]pen" + }, + { + "style": { + "background": "#86297b" + }, + "type": "report", + "value": "[Cc]ompleted" + }, + { + "style": { + "background": "#3ae600", + "color": "#000000" + }, + "type": "person", + "value": "Emily Harley" + } +] \ No newline at end of file From 634dda5a3b9d8b17a37ae39c8690cf341fce7dc1 Mon Sep 17 00:00:00 2001 From: ejunga Date: Mon, 21 Jul 2025 08:32:18 -0400 Subject: [PATCH 06/20] Remove highlights.json --- highlights.json | 109 ------------------------------------------------ 1 file changed, 109 deletions(-) delete mode 100644 highlights.json diff --git a/highlights.json b/highlights.json deleted file mode 100644 index a61def2..0000000 --- a/highlights.json +++ /dev/null @@ -1,109 +0,0 @@ -[ - { - "style": { - "background": "#412264", - "color": "#FFFFFF" - }, - "type": "person", - "value": "Ethan Mesecar" - }, - { - "style": { - "background": "#285c65", - "color": "#FFFFFF" - }, - "type": "person", - "value": "Justice Johnson" - }, - { - "style": { - "background": "#27f9bb", - "color": "#000000" - }, - "type": "person", - "value": "Elijah Junga" - }, - { - "style": { - "background": "#e63ab4", - "color": "#000000" - }, - "type": "person", - "value": "Deon Murray" - }, - { - "style": { - "background": "#b886d2", - "color": "#000000" - }, - "type": "person", - "value": "Andrea Gajic" - }, - { - "style": { - "background": "#a759f9", - "color": "#000000" - }, - "type": "person", - "value": "Omar Mostafa" - }, - { - "style": { - "background": "#e0c200", - "color": "#000000" - }, - "type": "person", - "value": "Trae Richardson" - }, - { - "style": { - "background": "#ff8c00", - "color": "#000000" - }, - "type": "person", - "value": "Elijah Beard" - }, - { - "style": { - "background": "#117e7e" - }, - "type": "regex-report", - "value": ".*" - }, - { - "style": { - "background": "#1f117c" - }, - "type": "report", - "value": "[Aa]ssigned" - }, - { - "style": { - "background": "#117c1f" - }, - "type": "report", - "value": "[Uu]nassigned" - }, - { - "style": { - "background": "#86297b" - }, - "type": "report", - "value": "[Oo]pen" - }, - { - "style": { - "background": "#86297b" - }, - "type": "report", - "value": "[Cc]ompleted" - }, - { - "style": { - "background": "#3ae600", - "color": "#000000" - }, - "type": "person", - "value": "Emily Harley" - } -] \ No newline at end of file From c41744e8262e6ace9f2ef4bbc60f46e6b90a73c5 Mon Sep 17 00:00:00 2001 From: ejunga Date: Mon, 21 Jul 2025 09:08:47 -0400 Subject: [PATCH 07/20] Fix Responsibility highlights --- tdx-enhanced.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index 89392e4..cfe8747 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -790,7 +790,7 @@ item.row = row items.push(item) - //console.log("ITEM:",item) + console.log("ITEM:",item) //being coloring parseItem(item) @@ -912,8 +912,8 @@ } //find internal users and highlight them - if ('ResponsibleFullName' in item) { - handleHighlight("person",item.ResponsibleFullName.txt,item.ResponsibleFullName.cell) + if ('Prim Resp' in item) { + handleHighlight("person",item['Prim Resp'].txt,item['Prim Resp'].cell) } else if ('Responsibility' in item) { handleHighlight("person",item.Responsibility.txt,item.Responsibility.cell) } From 72775e8f9aedd6dbffa3b1b05baf4ec7eed4943a Mon Sep 17 00:00:00 2001 From: ejunga Date: Mon, 21 Jul 2025 09:26:52 -0400 Subject: [PATCH 08/20] Remove debugging code --- tdx-enhanced.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index cfe8747..5888f1e 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -790,7 +790,7 @@ item.row = row items.push(item) - console.log("ITEM:",item) + //console.log("ITEM:",item) //being coloring parseItem(item) From e1969049f2f1ea22ad6572e242cf03dd053af072 Mon Sep 17 00:00:00 2001 From: ejunga Date: Mon, 21 Jul 2025 13:48:31 -0400 Subject: [PATCH 09/20] Fixed gradient color on horizontal overflow --- tdx-enhanced.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index 89392e4..a7e107b 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -3167,6 +3167,10 @@ table.table { color: var(--txt-2) !important; } +.tdx-table-fade-right { + background: linear-gradient(to right,transparent,var(--bg-0)) !important; +} + thead, tbody, tfoot, tr, td, th { border-color: var(--border-0); } From d69020eb82aeebf780cc178973087c5f0015e0b8 Mon Sep 17 00:00:00 2001 From: Elijah Wesley Bri Junga Date: Tue, 22 Jul 2025 09:50:03 -0400 Subject: [PATCH 10/20] Update tdx-enhanced.js Change beta branch update/download URL and bump version --- tdx-enhanced.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index 89392e4..eb6624c 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -1,7 +1,7 @@ // ==UserScript== // @name tdx-enhanced // @namespace purdue-it -// @version 2025-07-21-01 +// @version 2025-07-22-01 // @description enhanced tdx coloring & formatting. follows system color scheme. // @author Purdue STEM IT - it@purdue.edu // @match https://service.purdue.edu/TDWorkManagement* @@ -12,8 +12,8 @@ // @match https://purdue.teamdynamixpreview.com/TDNext* // @require https://momentjs.com/downloads/moment.min.js // @require https://cdnjs.cloudflare.com/ajax/libs/tinycolor/1.6.0/tinycolor.min.js -// @downloadURL https://raw.github.itap.purdue.edu/ECN/tdx-userscript/main/tdx-enhanced.js -// @updateURL https://raw.github.itap.purdue.edu/ECN/tdx-userscript/main/tdx-enhanced.js +// @downloadURL https://raw.github.itap.purdue.edu/ECN/tdx-userscript/refs/heads/beta/tdx-enhanced.js +// @updateURL https://raw.github.itap.purdue.edu/ECN/tdx-userscript/refs/heads/beta/tdx-enhanced.js // @grant GM_getResourceText // @grant GM_addStyle // @run-at document-end @@ -3914,4 +3914,4 @@ div.select2-container-multi .select2-choices .select2-search-choice>.select2-sea setCssFilters() parseOtherElements() -})(); \ No newline at end of file +})(); From 8deb8d0a7d4d472eef0a096956a6f8e836ac5d40 Mon Sep 17 00:00:00 2001 From: Elijah Wesley Bri Junga Date: Tue, 22 Jul 2025 09:59:19 -0400 Subject: [PATCH 11/20] Update tdx-enhanced.js Bump version number --- tdx-enhanced.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index b2877aa..9aa47ef 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -1,7 +1,7 @@ // ==UserScript== // @name tdx-enhanced // @namespace purdue-it -// @version 2025-07-22-01 +// @version 2025-07-22-02 // @description enhanced tdx coloring & formatting. follows system color scheme. // @author Purdue STEM IT - it@purdue.edu // @match https://service.purdue.edu/TDWorkManagement* From f84114bf3cc4d4966c0ba34940150b37193aa831 Mon Sep 17 00:00:00 2001 From: Elijah Wesley Bri Junga Date: Tue, 22 Jul 2025 10:15:41 -0400 Subject: [PATCH 12/20] bump version number --- tdx-enhanced.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index 1d4e214..48904cb 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -1,7 +1,7 @@ // ==UserScript== // @name tdx-enhanced // @namespace purdue-it -// @version 2025-07-22-02 +// @version 2025-07-22-03 // @description enhanced tdx coloring & formatting. follows system color scheme. // @author Purdue STEM IT - it@purdue.edu // @match https://service.purdue.edu/TDWorkManagement* From 0dd7934cb632d05aae46912f839bd01508649ba7 Mon Sep 17 00:00:00 2001 From: Elijah Wesley Bri Junga Date: Tue, 22 Jul 2025 10:51:19 -0400 Subject: [PATCH 13/20] bump version number --- tdx-enhanced.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index 890a2f5..e67cc8c 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -1,7 +1,7 @@ // ==UserScript== // @name tdx-enhanced // @namespace purdue-it -// @version 2025-07-22-03 +// @version 2025-07-22-04 // @description enhanced tdx coloring & formatting. follows system color scheme. // @author Purdue STEM IT - it@purdue.edu // @match https://service.purdue.edu/TDWorkManagement* From 0aa95d7d62e20a843e8905b42a1d08ec45be19d7 Mon Sep 17 00:00:00 2001 From: ejunga Date: Mon, 28 Jul 2025 11:43:49 -0400 Subject: [PATCH 14/20] Fix discolored time/expenses dashboard --- tdx-enhanced.js | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index e67cc8c..20f9f95 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -2673,6 +2673,29 @@ a:visited, color: var(--col-400); } +.tdworkmgmt.table-striped > tbody > tr.tdx-grid__group-header > td, .tdworkmgmt.table-bordered > tbody > tr.tdx-grid__group-header > td { + background-color: var(--col-100); +} + +.tdx-time-panel, .tdx-time-panel__heading { + color: var(--txt-1) !important; + background-color: var(--bg-1) !important; + border: 1px solid var(--border-0) !important; +} + +.tdx-leftnav__badge { + color: var(--txt-1) !important; + background-color: var(--col-300) !important; +} + +body .tdworkmgmt.table.table--vertical-lines > tbody > tr > td:not(:last-of-type) { + border-right: 1px solid var(--border-0); +} + +.TDGroupingRow { + color: var(--txt-1); +} + a.disabledLink { color: var(--txt-1) !important; } @@ -3884,6 +3907,14 @@ div.profile-image.red-bg, div.profile-image.green-bg, div.profile-image.red-bg, color: var(--col-400) !important; } +.tdx-hover-darken { + color: var(--col-400); +} + +.tdx-hover-darken:hover { + color: var(--col-300); +} + .form-group>a, .form-group>.checkbox>a, .disp-group>a, .form-group>.control-label>a, .checkbox>label>a { color: var(--col-400) !important; } From 29e10bb4dccb3c74739ae15e6c8f038fddc24093 Mon Sep 17 00:00:00 2001 From: ejunga Date: Mon, 28 Jul 2025 13:12:17 -0400 Subject: [PATCH 15/20] Fix "recently requested by" in ticket creation --- tdx-enhanced.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index 20f9f95..69d4458 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -3739,6 +3739,11 @@ body .tdworkmgmt.table>tbody>tr:not(.tdx-grid__group-header):not(.TDGridHeader): color: var(--txt-1); } +.list-group-item { + background-color: var(--bg-0); + border-color: var(--border-0); +} + /* Text Editor */ .cke_editable { color: var(--txt-1); From 4bd7c75f958859bfb916c26dc1291515e7e29e9e Mon Sep 17 00:00:00 2001 From: ejunga Date: Mon, 28 Jul 2025 14:14:31 -0400 Subject: [PATCH 16/20] Fix new ticket page styles --- tdx-enhanced.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index 69d4458..2078c5a 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -2673,6 +2673,10 @@ a:visited, color: var(--col-400); } +.tdworkmgmt.table-contents div.row > div > a { + color: var(--col-400); +} + .tdworkmgmt.table-striped > tbody > tr.tdx-grid__group-header > td, .tdworkmgmt.table-bordered > tbody > tr.tdx-grid__group-header > td { background-color: var(--col-100); } @@ -3447,6 +3451,11 @@ button.k-button.k-button-md.k-button-flat.k-button-flat-primary:hover { background-color: var(--bg-5) !important; } +.tdworkmgmt.table-header > div { + background-color: var(--bg-1); + color: var(--col-400); +} + /* Side Panels */ .tdx-right-side-panel { From f4b1980fdda9d7f55ac3aa5191a130a7fcb4375a Mon Sep 17 00:00:00 2001 From: ejunga Date: Mon, 28 Jul 2025 15:29:19 -0400 Subject: [PATCH 17/20] Various color corrections --- tdx-enhanced.js | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index 2078c5a..b15511d 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -3387,11 +3387,15 @@ button.k-pager-nav.k-button.k-button-flat.k-button-flat-base.k-icon-button.k-but } .k-window-titlebar { - background: var(--bg-0); + background-color: var(--bg-0) !important; +} + +.k-window-content { + background-color: var(--bg-0) !important; } .k-window-title { - color: var(--col-500); + color: var(--col-500) !important; } .k-button .k-svg-i-window { @@ -3483,6 +3487,17 @@ button.k-button.k-button-md.k-button-flat.k-button-flat-primary:hover { border-color: var(--col-500) !important; } + +.tdx-right-side-panel__home-button { + color: var(--col-400) !important; + border-color: var(--col-500) !important; +} + +.tdx-right-side-panel__home-button:hover { + color: var(--col-200) !important; + border-color: var(--col-300) !important; +} + .tdx-leftnav-drag-handle { background: linear-gradient(var(--col-400),var(--col-400)) no-repeat right/1px 10% !important; } @@ -3953,7 +3968,8 @@ div.profile-image.red-bg, div.profile-image.green-bg, div.profile-image.red-bg, .tdx-dropdown__menu-icon, .tdx-dropdown--headline:after, .tdx-dropdown:after, -.tdx-icon--search +.tdx-icon--search, +.k-icon { filter: brightness(0) invert(var(--filter-invert)) sepia(var(--filter-sepia)) saturate(var(--filter-saturate)) hue-rotate(var(--filter-hue-rotate)) brightness(var(--filter-brightness)) contrast(var(--filter-contrast)); } From 262a7325bc320c8648d12a23f4ad806066682c4b Mon Sep 17 00:00:00 2001 From: ejunga Date: Mon, 28 Jul 2025 15:30:25 -0400 Subject: [PATCH 18/20] bumb version number --- tdx-enhanced.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index b15511d..d94018d 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -1,7 +1,7 @@ // ==UserScript== // @name tdx-enhanced // @namespace purdue-it -// @version 2025-07-22-04 +// @version 2025-07-28-01 // @description enhanced tdx coloring & formatting. follows system color scheme. // @author Purdue STEM IT - it@purdue.edu // @match https://service.purdue.edu/TDWorkManagement* From 522109f7dbe673ed199632ecbec3249138280be9 Mon Sep 17 00:00:00 2001 From: ejunga Date: Tue, 29 Jul 2025 13:52:21 -0400 Subject: [PATCH 19/20] Get ready for release - [x] change download/update urls - [x] set version number --- tdx-enhanced.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index d94018d..fa9352a 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -1,7 +1,7 @@ // ==UserScript== // @name tdx-enhanced // @namespace purdue-it -// @version 2025-07-28-01 +// @version 2025-07-31-01 // @description enhanced tdx coloring & formatting. follows system color scheme. // @author Purdue STEM IT - it@purdue.edu // @match https://service.purdue.edu/TDWorkManagement* @@ -12,8 +12,8 @@ // @match https://purdue.teamdynamixpreview.com/TDNext* // @require https://momentjs.com/downloads/moment.min.js // @require https://cdnjs.cloudflare.com/ajax/libs/tinycolor/1.6.0/tinycolor.min.js -// @downloadURL https://raw.github.itap.purdue.edu/ECN/tdx-userscript/refs/heads/beta/tdx-enhanced.js -// @updateURL https://raw.github.itap.purdue.edu/ECN/tdx-userscript/refs/heads/beta/tdx-enhanced.js +// @downloadURL https://raw.github.itap.purdue.edu/ECN/tdx-userscript/refs/heads/main/tdx-enhanced.js +// @updateURL https://raw.github.itap.purdue.edu/ECN/tdx-userscript/refs/heads/main/tdx-enhanced.js // @grant GM_getResourceText // @grant GM_addStyle // @run-at document-end From 2e41299344c102d8037a1ff8ff2a977a4bd3ebe4 Mon Sep 17 00:00:00 2001 From: ejunga Date: Thu, 31 Jul 2025 08:47:28 -0400 Subject: [PATCH 20/20] Fix 'CSS Support' highlighting --- tdx-enhanced.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tdx-enhanced.js b/tdx-enhanced.js index fa9352a..5df88c2 100644 --- a/tdx-enhanced.js +++ b/tdx-enhanced.js @@ -826,9 +826,9 @@ //console.log("Parse item:",item) //color queue names - if ('STEM Support' in item) { - let qCell = item["STEM Support"].cell - let qTxt = item["STEM Support"].txt.toLowerCase() + if ('CSS Support' in item) { + let qCell = item["CSS Support"].cell + let qTxt = item["CSS Support"].txt.toLowerCase() if (qTxt in colorsByQueue) { let q = colorsByQueue[qTxt]