Merge pull request #99 from hargata/Hargata/scrollposition

quick fix
This commit is contained in:
Hargata Softworks
2024-01-15 00:05:10 -07:00
committed by GitHub
2 changed files with 2 additions and 1 deletions

View File

@@ -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
});
}
}

View File

@@ -126,6 +126,7 @@ function getVehicleReport(vehicleId) {
$.get(`/Vehicle/GetReportPartialView?vehicleId=${vehicleId}`, function (data) {
if (data) {
$("#report-tab-pane").html(data);
getVehicleHaveImportantReminders(vehicleId);
}
})
}