Comments out timestamp update in dragged clone

Comments out the timestamp update logic within the dragged clone functionality.

This change is a preliminary step towards refactoring the scroll logic, which will be managed by a dedicated scroll manager, decoupling it from the event renderer.
This commit is contained in:
Janus C. H. Knudsen 2025-10-03 16:33:26 +02:00
parent 38737762c5
commit 1821d805d1

View file

@ -197,7 +197,7 @@ export class DateEventRenderer implements EventRendererStrategy {
this.draggedClone.style.top = snappedY + 'px'; this.draggedClone.style.top = snappedY + 'px';
// Update timestamp display // Update timestamp display
this.updateCloneTimestamp(this.draggedClone, snappedY); //this.updateCloneTimestamp(this.draggedClone, snappedY); //TODO: Commented as, we need to move all this scroll logic til scroll manager away from eventrenderer
} }
/** /**