Skip to content

Commit

Permalink
Missing indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
Flix6x committed Apr 22, 2021
1 parent 1f404b7 commit 9bd99f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flexmeasures/ui/static/js/flexmeasures.js
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ function submit_sensor_type() {
export function subtract(oldDate, nDays) {
var newDate = new Date(oldDate)
newDate.setDate(newDate.getDate() - nDays);
return newDate;
return newDate;
}
export function thisMonth(oldDate) {
var d1 = new Date(oldDate)
Expand Down

0 comments on commit 9bd99f9

Please sign in to comment.