mirror of
https://github.com/jacobtread/obsidian-timekeep.git
synced 2026-07-22 10:10:27 +00:00
fix: timesheet table initial ordering
This commit is contained in:
parent
dff32ab575
commit
4e6809c6de
1 changed files with 4 additions and 0 deletions
|
|
@ -132,6 +132,10 @@ export class TimesheetTable extends DomComponent {
|
|||
depth: 0,
|
||||
}));
|
||||
|
||||
// Need to reverse the order of the initial stack so that it's iterated in
|
||||
// the correct order
|
||||
stack.reverse();
|
||||
|
||||
while (stack.length > 0) {
|
||||
const { entry, depth } = stack.pop()!;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue