Skip to content

Commit 7b1aacc

Browse files
author
John Cruz
committed
Merge branch '10434-story' into 10434-test
2 parents 049d74a + 537e97e commit 7b1aacc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

web-client/src/views/TrialSessions/TrialSessionPlanningReportView.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,9 @@ function TrialSessionPlanningReportTable({
120120
locationData.map((trialLocation, idx) => {
121121
return (
122122
<tr
123-
className={trialLocation.hasNotBeenCalendared && 'bg-yellow'}
123+
className={
124+
trialLocation.hasNotBeenCalendared ? 'bg-yellow' : undefined
125+
}
124126
key={`row-${idx}`}
125127
>
126128
<td>

0 commit comments

Comments
 (0)