refactor: UI indexes are 1 based

This commit is contained in:
Carlos Valente
2025-03-28 22:18:22 +01:00
parent 73afbacdd7
commit e6e1c38355
@@ -94,7 +94,7 @@ export default function ReportSettings() {
})();
return (
<tr key={entry.index}>
<th>{entry.index}</th>
<th>{entry.index + 1}</th>
<th>{entry.cue}</th>
<th>{entry.title}</th>
<th className={cx([start && style[start]])}>{formatTime(entry.scheduledStart)}</th>