Skip to content

Commit 5beb998

Browse files
committed
Respect Code-Styleguide on If-Statements
1 parent 9e95307 commit 5beb998

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/js/core/RowManager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1063,7 +1063,7 @@ export default class RowManager extends CoreFeature{
10631063
//check if the table has changed size when dealing with variable height tables
10641064
if(!this.fixedHeight && initialHeight != this.element.clientHeight){
10651065
resized = true;
1066-
if(!this.redrawing) { // prevent recursive redraws
1066+
if(!this.redrawing){ // prevent recursive redraws
10671067
this.redrawing = true;
10681068
if(this.subscribed("table-resize")){
10691069
this.dispatch("table-resize");

0 commit comments

Comments
 (0)