Merge pull request #1694 from ArthurHoaro/fix/bulk-add-redirect-token
Fix: bulk add redirection with ending slash
This commit is contained in:
commit
83b4eb1795
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ const redirectIfEmptyBatch = (basePath, formElements, path) => {
|
||||||
});
|
});
|
||||||
|
|
||||||
Promise.all(promises).then(() => {
|
Promise.all(promises).then(() => {
|
||||||
window.location.href = basePath || '/';
|
window.location.href = `${basePath}/`;
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue