Fix redirect after deleting item

Redirects to the parent of an item instead of homepage after deleting the item
This commit is contained in:
DrWarpMan 2024-08-19 11:06:12 +02:00 committed by GitHub
parent 111e2aea71
commit 6e36915f5e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -659,7 +659,7 @@ function deleteItem(apiClient, item) {
import('../scripts/deleteHelper').then((deleteHelper) => {
deleteHelper.deleteItem({
item: item,
navigate: false
navigate: true
}).then(function () {
resolve(true);
}, reject);