Bug 32030: Redirect to the Koha home page when "Home" is clicked from the breadcrumb
Signed-off-by: Jonathan Field <jonathan.field@ptfs-europe.com> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
8452dcc929
commit
715ce3806d
1 changed files with 6 additions and 1 deletions
|
@ -116,7 +116,12 @@ function build_breadcrumb(parent_breadcrumb, current) {
|
||||||
}
|
}
|
||||||
|
|
||||||
export const routes = [
|
export const routes = [
|
||||||
{ path: "/cgi-bin/koha/mainpage.pl" },
|
{
|
||||||
|
path: "/cgi-bin/koha/mainpage.pl",
|
||||||
|
beforeEnter(to, from, next) {
|
||||||
|
window.location.href = "/cgi-bin/koha/mainpage.pl";
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: "/cgi-bin/koha/erm/erm.pl",
|
path: "/cgi-bin/koha/erm/erm.pl",
|
||||||
component: ERMHome,
|
component: ERMHome,
|
||||||
|
|
Loading…
Reference in a new issue