Merge pull request #7190 from firefly-iii/fix-7186

Fix #7186
This commit is contained in:
James Cole
2023-03-11 05:48:41 +01:00
committed by GitHub

View File

@@ -74,11 +74,19 @@ $(function () {
function (start, end, label) {
// send post.
$.post(dateRangeMeta.url, {
start: start.format('YYYY-MM-DD'),
end: end.format('YYYY-MM-DD'),
label: label,
_token: token
$.ajax({
url: dateRangeMeta.url,
data: {
start: start.format('YYYY-MM-DD'),
end: end.format('YYYY-MM-DD'),
label: label,
_token: token
},
type: 'POST',
headers: {
'X-CSRF-Token': $('meta[name="csrf-token"]').attr('content'),
'Content-Type': 'application/x-www-form-urlencoded'
}
}).done(function () {
window.location.reload(true);
}).fail(function () {