Fix folders
parent
052f5a8f3d
commit
c334bd46b3
|
@ -429,6 +429,11 @@ export default class Timeline extends Mixins(GlobalMixin) {
|
||||||
// Initialization
|
// Initialization
|
||||||
day.rows = new Set();
|
day.rows = new Set();
|
||||||
|
|
||||||
|
// Nothing here
|
||||||
|
if (day.count === 0) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
// Store the preloads
|
// Store the preloads
|
||||||
if (day.detail) {
|
if (day.detail) {
|
||||||
preloads[day.dayid] = {
|
preloads[day.dayid] = {
|
||||||
|
@ -438,11 +443,6 @@ export default class Timeline extends Mixins(GlobalMixin) {
|
||||||
delete day.detail;
|
delete day.detail;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Nothing here
|
|
||||||
if (day.count === 0) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Add header to list
|
// Add header to list
|
||||||
const head = {
|
const head = {
|
||||||
id: ++this.numRows,
|
id: ++this.numRows,
|
||||||
|
|
Loading…
Reference in New Issue