mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
remove first slash in mass transaction changes
maybe bug when Firefly installed in directory
This commit is contained in:
parent
82e7202ad2
commit
958c7e7939
6
public/js/ff/transactions/list.js
vendored
6
public/js/ff/transactions/list.js
vendored
@ -67,7 +67,7 @@ function goToMassEdit() {
|
|||||||
baseHref = bases[0].href;
|
baseHref = bases[0].href;
|
||||||
}
|
}
|
||||||
|
|
||||||
window.location.href = baseHref + '/transactions/mass/edit/' + checkedArray;
|
window.location.href = baseHref + 'transactions/mass/edit/' + checkedArray;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -87,7 +87,7 @@ function goToBulkEdit() {
|
|||||||
baseHref = bases[0].href;
|
baseHref = bases[0].href;
|
||||||
}
|
}
|
||||||
|
|
||||||
window.location.href = baseHref + '/transactions/bulk/edit/' + checkedArray;
|
window.location.href = baseHref + 'transactions/bulk/edit/' + checkedArray;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -106,7 +106,7 @@ function goToMassDelete() {
|
|||||||
if (bases.length > 0) {
|
if (bases.length > 0) {
|
||||||
baseHref = bases[0].href;
|
baseHref = bases[0].href;
|
||||||
}
|
}
|
||||||
window.location.href = baseHref + '/transactions/mass/delete/' + checkedArray;
|
window.location.href = baseHref + 'transactions/mass/delete/' + checkedArray;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user