Skip to content

Commit

Permalink
refactor: fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
rars committed Mar 6, 2024
1 parent 260d34d commit c17b797
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export class InlineDiffComponent implements OnInit, OnChanges {
const cssClass = this.getCssClass(LineDiffType.Equal);
const linesToInsert: LineDiff[] = [];

for (let line of lines) {
for (const line of lines) {
linesToInsert.push({
type: LineDiffType.Equal,
lineNumberInOldText,
Expand Down

0 comments on commit c17b797

Please sign in to comment.