Skip to content
Snippets Groups Projects
Commit 7ed7a3c9 authored by Nathan Bockisch's avatar Nathan Bockisch
Browse files

DAs want highlighting for the AOD column to match the DA column for non-SRDP entries

parent 3ab79c47
No related branches found
No related tags found
3 merge requests!1390Catch up with Main,!1308Catchup with main 2.8.1,!1295DAs want highlighting for the AOD column to match the DA column for non-SRDP entries
Pipeline #9256 passed
......@@ -244,10 +244,11 @@
</div>
</span>
</td>
<!-- for non-srdp entries, DAs want AOD color highlighting to match the DA one -->
<td
[ngClass]="{
'staff-assigned' : request.assigned_aod,
'staff-unassigned' : !request.assigned_aod
'staff-assigned' : (getMetadata(request).is_srdp && request.assigned_aod) || (!getMetadata(request).is_srdp && request.assigned_da),
'staff-unassigned' : (getMetadata(request).is_srdp && !request.assigned_aod) || (!getMetadata(request).is_srdp && !request.assigned_da)
}"
>
<span *ngIf="qaStaff.AOD">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment