Skip hiding of empty rows

This commit is contained in:
Vencislav Atanasov 2024-10-01 01:50:56 +03:00
parent 05de30ee00
commit 300ea1c4e7
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ export default function useScheduleTable({
}];
});
const isEmptyRow = !eventCells.find(slot => !!slot?.event);
const isEmptyRow = false; // TODO !eventCells.find(slot => !!slot?.event);
const showHeader = isFirst || isFirstForTheDay;
const showSlot = !isLast && !isLastForTheDay && !isEmptyRow;