mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
"Fix" Back updateBackButton evaluation
This commit is contained in:
parent
036cf6ef95
commit
91b7161993
1 changed files with 1 additions and 1 deletions
|
@ -747,7 +747,7 @@ define(["dom", "layoutManager", "inputManager", "connectionManager", "events", "
|
|||
}
|
||||
|
||||
if (headerBackButton) {
|
||||
if ("false" !== !isDashboardPage && page.getAttribute("data-backbutton") && appRouter.canGoBack()) {
|
||||
if (page.getAttribute("data-backbutton") && appRouter.canGoBack()) {
|
||||
headerBackButton.classList.remove("hide");
|
||||
} else {
|
||||
headerBackButton.classList.add("hide");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue