Skip to content

Commit

Permalink
fix(seat-item.custom-area.ts): adjust transform translate y-coordinat…
Browse files Browse the repository at this point in the history
…e for seat item to correct positioning
  • Loading branch information
alisaitteke committed Jan 29, 2025
1 parent 971ef9a commit ad88e27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export class SeatItemCustomSvgArea extends SvgBase {
this.attr("fill", this.global.config.style.label.color);
this.attr("opacity", 0);
this.attr("r", this.global.config.style.seat.radius / 1.5);
this.attr("transform", `translate(${(this.global.config.style.seat.radius / 2) },630)`);
this.attr("transform", `translate(${(this.global.config.style.seat.radius / 2)},560)`);

return this;
}
Expand Down

0 comments on commit ad88e27

Please sign in to comment.