Skip to content

Commit 2ea84fa

Browse files
committed
lint
1 parent 348839e commit 2ea84fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

web_src/js/features/file-fold.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {svg} from '../svg.js';
77
//
88
export function setFileFolding(fileContentBox, foldArrow, newFold) {
99
foldArrow.innerHTML = svg(`octicon-chevron-${newFold ? 'right' : 'down'}`, 18);
10-
fileContentBox.setAttribute('data-folded', newFold);
10+
fileContentBox.setAttribute('data-folded', newFold);
1111
if (newFold && fileContentBox.getBoundingClientRect().top < 0) {
1212
fileContentBox.scrollIntoView();
1313
}

0 commit comments

Comments
 (0)