Skip to content

Commit

Permalink
chore: fixed linter error
Browse files Browse the repository at this point in the history
  • Loading branch information
raaymax committed Feb 29, 2024
1 parent f689fb7 commit 1f221ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/src/builder/BuilderInstanceTracker.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const trackElement = (el: HTMLElement) => {
if (settingsLeft < rendererX + rendererWidth) {
const trackerEnd = trackerX + contentsWidth;
const rendererEnd = rendererX + rendererWidth;
const distanceToRight = Math.max( rendererEnd - trackerEnd, 0)
const distanceToRight = Math.max(rendererEnd - trackerEnd, 0);
correction = Math.max(settingsWidth - distanceToRight, 0);
}
Expand Down

0 comments on commit 1f221ea

Please sign in to comment.