Skip to content

Commit

Permalink
Fix typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
jorg-vr committed Jul 12, 2024
1 parent 8c31f8c commit c4b0dad
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ export abstract class SeriesExerciseGraph extends SeriesGraph {
"time limit exceeded", "memory limit exceeded", "output limit exceeded",
];

protected override draw(animation=true): void {
protected override draw(): void {
this.height = 60 * this.exOrder.length + this.margin.top + this.margin.bottom;
super.draw(animation);
super.draw();

// y-scale for exercises
this.y = d3.scaleBand()
Expand Down

0 comments on commit c4b0dad

Please sign in to comment.