Skip to content

Commit

Permalink
chore: fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
biomadeira committed Nov 11, 2024
1 parent fe9e1d6 commit 0816675
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/visual-output-app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,11 @@ export class VisualOutput extends BasicCanvasRenderer {
private queryFactor: number = 1.0;
private subjFactor: number = 1.0;

constructor(element: string | HTMLCanvasElement, private dataObj: SSSResultModel, renderOptions: RenderOptions) {
constructor(
element: string | HTMLCanvasElement,
private dataObj: SSSResultModel,
renderOptions: RenderOptions
) {
super(element);

renderOptions.canvasWidth != undefined ? (this.canvasWidth = renderOptions.canvasWidth) : (this.canvasWidth = 1000);
Expand Down

0 comments on commit 0816675

Please sign in to comment.