Skip to content

Commit

Permalink
lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
trentm committed May 7, 2024
1 parent 66ef387 commit 98b6309
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/mockotlpserver/lib/waterfall.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ function renderSpan(span, prefix = '') {
unit = 'd ';
}
gutter = `${startOffset >= 0 ? '+' : ''}${Math.round(startOffset)}`;
gutter = `${' '.repeat(Math.max(4 - gutter.length, 0))}${gutter}${unit}`;
gutter = `${' '.repeat(
Math.max(4 - gutter.length, 0)
)}${gutter}${unit}`;
} else {
gutter = ' '.repeat(6);
}
Expand Down

0 comments on commit 98b6309

Please sign in to comment.