-
-
Notifications
You must be signed in to change notification settings - Fork 161
Open
Description
Take a look here:
Lines 83 to 93 in 9ebffd0
| if (lostRowGutter !== '0') { | |
| decl.cloneBefore({ | |
| prop: 'height', | |
| value: lgLogic.calcValue(lostRow, lostRowGutter, lostRowRounder, unit) | |
| }); | |
| } else { | |
| decl.cloneBefore({ | |
| prop: 'height', | |
| value: lgLogic.calcValue(lostRow, lostRowGutter, lostRowRounder, unit) | |
| }); | |
| } |
The same body is used in both the if and the else clause.
What is happening? Isn't that some kind of mistake?