chore: rename blocks to groups

This commit is contained in:
Carlos Valente
2025-08-09 06:47:13 +02:00
committed by Carlos Valente
parent 486d89ecf4
commit e5d2457717
83 changed files with 987 additions and 981 deletions
@@ -26,7 +26,7 @@ interface EventRowProps {
rowBgColour?: string;
parentBgColour?: string;
table: Table<OntimeEntry>;
firstAfterBlock: boolean;
firstAfterGroup: boolean;
}
export default function EventRow({
@@ -39,7 +39,7 @@ export default function EventRow({
rowBgColour,
parentBgColour,
table,
firstAfterBlock,
firstAfterGroup,
}: EventRowProps) {
const { cuesheetMode, hideIndexColumn } = table.options.meta?.options ?? {
cuesheetMode: AppMode.Edit,
@@ -75,7 +75,7 @@ export default function EventRow({
className={cx([
style.eventRow,
event.skip && style.skip,
firstAfterBlock && style.firstAfterBlock,
firstAfterGroup && style.firstAfterGroup,
Boolean(parentBgColour) && style.hasParent,
])}
style={{