mirror of
https://github.com/cpvalente/ontime.git
synced 2026-09-10 08:39:34 +00:00
refactor: UI indexes are 1 based
This commit is contained in:
+1
-1
@@ -94,7 +94,7 @@ export default function ReportSettings() {
|
|||||||
})();
|
})();
|
||||||
return (
|
return (
|
||||||
<tr key={entry.index}>
|
<tr key={entry.index}>
|
||||||
<th>{entry.index}</th>
|
<th>{entry.index + 1}</th>
|
||||||
<th>{entry.cue}</th>
|
<th>{entry.cue}</th>
|
||||||
<th>{entry.title}</th>
|
<th>{entry.title}</th>
|
||||||
<th className={cx([start && style[start]])}>{formatTime(entry.scheduledStart)}</th>
|
<th className={cx([start && style[start]])}>{formatTime(entry.scheduledStart)}</th>
|
||||||
|
|||||||
Reference in New Issue
Block a user