Calendar: Fix "now" line in planner view took a minute to show up

This commit is contained in:
nathan 2023-03-30 09:24:32 -06:00
parent c0f29e406f
commit 281fb684fb

View File

@ -1996,7 +1996,12 @@ export class et2_calendar_planner extends et2_calendar_view implements et2_IDeta
{ {
this.invalidate(false); this.invalidate(false);
} }
}); })
.then(() =>
{
// Update the "now" line _after_ rows are done
this._updateNow();
});
}, this, this.getInstanceManager().execId,this.id); }, this, this.getInstanceManager().execId,this.id);
return value; return value;