Skip to content

Commit

Permalink
Fix Responsibility highlights
Browse files Browse the repository at this point in the history
  • Loading branch information
ejunga committed Jul 21, 2025
1 parent 0200e8c commit c41744e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tdx-enhanced.js
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@

item.row = row
items.push(item)
//console.log("ITEM:",item)
console.log("ITEM:",item)

//being coloring
parseItem(item)
Expand Down Expand Up @@ -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)
}
Expand Down

0 comments on commit c41744e

Please sign in to comment.