Skip to content

Commit a566e35

Browse files
committed
chore(base-helper): fix identation
1 parent b4f7189 commit a566e35

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

projects/igniteui-angular/src/lib/directives/for-of/base.helper.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,12 +111,12 @@ export class VirtualHelperBaseDirective implements OnDestroy, AfterViewInit {
111111
if (hasScrollbar) {
112112
this.nativeElement.classList.add('has-scrollbar');
113113
if (prevSibling?.tagName.toLowerCase() === 'igx-display-container') {
114-
prevSibling.classList.add('has-scrollbar');
114+
prevSibling.classList.add('has-scrollbar');
115115
}
116116
} else {
117117
this.nativeElement.classList.remove('has-scrollbar');
118118
if (prevSibling?.tagName.toLowerCase() === 'igx-display-container') {
119-
prevSibling.classList.remove('has-scrollbar');
119+
prevSibling.classList.remove('has-scrollbar');
120120
}
121121
}
122122
}
@@ -131,7 +131,7 @@ export class VirtualHelperBaseDirective implements OnDestroy, AfterViewInit {
131131
this.restoreScroll();
132132
}
133133

134-
this.updateScrollbarClass();
134+
this.updateScrollbarClass();
135135
}
136136

137137
protected restoreScroll() {}

0 commit comments

Comments
 (0)