Skip to content

Commit

Permalink
Merge branch '10434-story' into 10434-test
Browse files Browse the repository at this point in the history
  • Loading branch information
John Cruz committed Dec 6, 2024
2 parents 049d74a + 537e97e commit 7b1aacc
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,9 @@ function TrialSessionPlanningReportTable({
locationData.map((trialLocation, idx) => {
return (
<tr
className={trialLocation.hasNotBeenCalendared && 'bg-yellow'}
className={
trialLocation.hasNotBeenCalendared ? 'bg-yellow' : undefined
}
key={`row-${idx}`}
>
<td>
Expand Down

0 comments on commit 7b1aacc

Please sign in to comment.