diff --git a/fe/fe-core/src/main/java/org/apache/doris/httpv2/controller/BaseController.java b/fe/fe-core/src/main/java/org/apache/doris/httpv2/controller/BaseController.java
index 3bbea54f02c329..bd36e3c229992d 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/httpv2/controller/BaseController.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/httpv2/controller/BaseController.java
@@ -106,6 +106,7 @@ protected void addSession(HttpServletRequest request, HttpServletResponse respon
Cookie cookie = new Cookie(PALO_SESSION_ID, key);
cookie.setMaxAge(PALO_SESSION_EXPIRED_TIME);
cookie.setPath("/");
+ cookie.setHttpOnly(true);
response.addCookie(cookie);
LOG.debug("add session cookie: {} {}", PALO_SESSION_ID, key);
HttpAuthManager.getInstance().addSessionValue(key, value);
@@ -170,6 +171,7 @@ public void updateCookieAge(HttpServletRequest request, String cookieName, int a
for (Cookie cookie : cookies) {
if (cookie.getName() != null && cookie.getName().equals(cookieName)) {
cookie.setMaxAge(age);
+ cookie.setPath("/");
response.addCookie(cookie);
LOG.debug("get update cookie: {} {}", cookie.getName(), cookie.getValue());
}
diff --git a/ui/public/locales/en-us.json b/ui/public/locales/en-us.json
index ba4200138f5460..97f076d39b1c1e 100644
--- a/ui/public/locales/en-us.json
+++ b/ui/public/locales/en-us.json
@@ -47,5 +47,7 @@
"tips":"Tips",
"fileSizeWarning": "File size cannot exceed 100M",
"selectWarning": "Please select a table",
- "executionTime": "Execution Time"
+ "executionTime": "Execution Time",
+ "search":"Search",
+ "executionFailed":"Execution failed"
}
diff --git a/ui/public/locales/zh-cn.json b/ui/public/locales/zh-cn.json
index 24a7335735b180..ec1ccf41e1ac34 100644
--- a/ui/public/locales/zh-cn.json
+++ b/ui/public/locales/zh-cn.json
@@ -47,5 +47,7 @@
"tips": "提示",
"fileSizeWarning": "文件大小不能超过100m",
"selectWarning": "请选择表",
- "executionTime": "执行时间"
+ "executionTime": "执行时间",
+ "search":"查询",
+ "executionFailed": "执行失败"
}
diff --git a/ui/src/components/table/index.tsx b/ui/src/components/table/index.tsx
index f775739e5522d3..8c082b752fe758 100644
--- a/ui/src/components/table/index.tsx
+++ b/ui/src/components/table/index.tsx
@@ -50,7 +50,6 @@ export default function SortFilterTable(props: any) {
| - {item.name} - | - ))} -
|---|
| - {tdData == '\\N'?'-':tdData} - | - ))} -