mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Use daysofweek and hours as key
This is better and any sane person should not set multiple schdules to be exactly the same
This commit is contained in:
parent
95e935aede
commit
bb17d58536
1 changed files with 1 additions and 1 deletions
|
@ -479,7 +479,7 @@ const UserParentalControl = () => {
|
|||
<div className='accessScheduleList paperList'>
|
||||
{accessSchedules.map((accessSchedule, index) => {
|
||||
return <AccessScheduleList
|
||||
key={index}
|
||||
key={`${accessSchedule.DayOfWeek}${accessSchedule.StartHour}${accessSchedule.EndHour}`}
|
||||
index={index}
|
||||
DayOfWeek={accessSchedule.DayOfWeek}
|
||||
StartHour={accessSchedule.StartHour}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue