Merge pull request #522 from marner2/patch-1
Fix base where Taskboard is hosted at root.
This commit is contained in:
commit
d664355ffa
@ -29,7 +29,7 @@
|
||||
['/boards', '/settings', '/dashboard'].forEach(p => {
|
||||
const i = path.indexOf(p)
|
||||
|
||||
if (i > 0) {
|
||||
if (i >= 0) {
|
||||
path = path.substring(0, i);
|
||||
}
|
||||
});
|
||||
|
Reference in New Issue
Block a user