Fix folders

pull/37/head
Varun Patil 2022-09-12 20:56:25 -07:00
parent 052f5a8f3d
commit c334bd46b3
1 changed files with 5 additions and 5 deletions

View File

@ -429,6 +429,11 @@ export default class Timeline extends Mixins(GlobalMixin) {
// Initialization
day.rows = new Set();
// Nothing here
if (day.count === 0) {
continue;
}
// Store the preloads
if (day.detail) {
preloads[day.dayid] = {
@ -438,11 +443,6 @@ export default class Timeline extends Mixins(GlobalMixin) {
delete day.detail;
}
// Nothing here
if (day.count === 0) {
continue;
}
// Add header to list
const head = {
id: ++this.numRows,