Skip to content

Commit

Permalink
Merge pull request #99 from hargata/Hargata/scrollposition
Browse files Browse the repository at this point in the history
quick fix
  • Loading branch information
hargata authored Jan 15, 2024
2 parents c916771 + 917d093 commit 4ccfcd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion wwwroot/js/shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ function initDatePicker(input, futureOnly) {
endDate: "+0d",
format: getShortDatePattern().pattern,
autoclose: true
}).datepicker("setDate", "0"); //default to today for backward looking datepickers but not forward looking ones, this is intentional. ReminderModal's date is set in ReminderInput.cs
});
}
}

Expand Down
1 change: 1 addition & 0 deletions wwwroot/js/vehicle.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ function getVehicleReport(vehicleId) {
$.get(`/Vehicle/GetReportPartialView?vehicleId=${vehicleId}`, function (data) {
if (data) {
$("#report-tab-pane").html(data);
getVehicleHaveImportantReminders(vehicleId);
}
})
}
Expand Down

0 comments on commit 4ccfcd6

Please sign in to comment.