Selaa lähdekoodia

Take the Hue base URL into account when redirecting from the Hue 404 page (#2718)

Co-authored-by: Akhil S Naik <asnaik@cloudera.com>
Johan Åhlén 3 vuotta sitten
vanhempi
commit
049da696a5
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      desktop/core/src/desktop/templates/common_header.mako

+ 1 - 1
desktop/core/src/desktop/templates/common_header.mako

@@ -203,7 +203,7 @@ ${ hueIcons.symbols() }
 
 % if hasattr(request, 'environ') and request.environ.get("PATH_INFO").find("/hue/") < 0:
   <script>
-    window.location.replace("/");
+    window.location.replace(window.HUE_BASE_URL || "/");
   </script>
 % endif