Fix folders
parent
052f5a8f3d
commit
c334bd46b3
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue