浏览代码

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 年之前
父节点
当前提交
049da696a5
共有 1 个文件被更改,包括 1 次插入1 次删除
  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