Add:Series filters #712

This commit is contained in:
advplyr 2022-10-29 15:33:38 -05:00
parent ce133cd6f2
commit fbbcbb4af1
12 changed files with 451 additions and 321 deletions

View file

@ -4,6 +4,6 @@ export default function ({ store, redirect, route, app }) {
if (route.name === 'batch' || route.name === 'index') {
return redirect('/login')
}
return redirect(`/login?redirect=${route.fullPath}`)
return redirect(`/login?redirect=${encodeURIComponent(route.fullPath)}`)
}
}