Skip hiding of empty rows
This commit is contained in:
parent
05de30ee00
commit
300ea1c4e7
|
@ -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 showHeader = isFirst || isFirstForTheDay;
|
||||||
const showSlot = !isLast && !isLastForTheDay && !isEmptyRow;
|
const showSlot = !isLast && !isLastForTheDay && !isEmptyRow;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue