Эх сурвалжийг харах

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 жил өмнө
parent
commit
049da696a5

+ 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