Skip to content

Commit

Permalink
chore: fix inactive state on time
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Sep 4, 2020
1 parent c756592 commit 97affd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Agenda/Agenda.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const Agenda = ({ children, className, tracks }) => {

{Array.from(sessionsByTime).map(([time, sessions]) => (
<Fragment key={time}>
<Time>{time}</Time>
<Time inactive={sessions[0].props.inactive}>{time}</Time>
{sessions}
</Fragment>
))}
Expand Down

0 comments on commit 97affd5

Please sign in to comment.