diff --git a/changes/en-us/develop.md b/changes/en-us/develop.md index b5455c99010..debcfdb3c11 100644 --- a/changes/en-us/develop.md +++ b/changes/en-us/develop.md @@ -8,6 +8,7 @@ Add changes here for all PR submitted to the develop branch. ### bugfix: - [[#5887](https://github.com/seata/seata/pull/5887)] fix global transaction hook repeat execute - [[#5991](https://github.com/seata/seata/pull/5991)] fix the issue that the Lua script is not synchronized when the redis sentinel master node is down +- [[#6025](https://github.com/seata/seata/pull/6025)] fix the white screen after click the "View Global Lock" button on the transaction info page in the console ### optimize: - [[#PR_NO](https://github.com/seata/seata/pull/PR_NO)] A brief and accurate description of PR @@ -23,6 +24,7 @@ Thanks to these contributors for their code commits. Please report an unintended - [slievrly](https://github.com/slievrly) - [jsbxyyx](https://github.com/jsbxyyx) +- [liuqiufeng](https://github.com/liuqiufeng) Also, we receive many valuable issues, questions and advices from our community. Thanks for you all. diff --git a/changes/zh-cn/develop.md b/changes/zh-cn/develop.md index d9bfd9e3e7d..9d6a72fb0d1 100644 --- a/changes/zh-cn/develop.md +++ b/changes/zh-cn/develop.md @@ -8,6 +8,7 @@ ### bugfix: - [[#5887](https://github.com/seata/seata/pull/5887)] 修复全局事务钩子重复执行 - [[#5991](https://github.com/seata/seata/pull/5991)] 修复redis sentinel master node 宕机时,lua脚本未同步的问题 +- [[#6025](https://github.com/seata/seata/pull/6025)] 修复控制台点击事务信息页面中的"查看全局锁"按钮之后白屏的问题 ### optimize: - [[#PR_NO](https://github.com/seata/seata/pull/PR_NO)] 准确简要的PR描述 @@ -23,5 +24,6 @@ - [slievrly](https://github.com/slievrly) - [jsbxyyx](https://github.com/jsbxyyx) +- [liuqiufeng](https://github.com/liuqiufeng) 同时,我们收到了社区反馈的很多有价值的issue和建议,非常感谢大家。 diff --git a/console/src/main/resources/static/console-fe/src/pages/TransactionInfo/TransactionInfo.tsx b/console/src/main/resources/static/console-fe/src/pages/TransactionInfo/TransactionInfo.tsx index 7985ba5ec11..2b074615dfe 100644 --- a/console/src/main/resources/static/console-fe/src/pages/TransactionInfo/TransactionInfo.tsx +++ b/console/src/main/resources/static/console-fe/src/pages/TransactionInfo/TransactionInfo.tsx @@ -371,7 +371,7 @@ class TransactionInfo extends React.Component { history.push({ - pathname: '/GlobalLockInfo', + pathname: '/globallock/list', // @ts-ignore query: { xid: record.xid }, }); @@ -392,7 +392,7 @@ class TransactionInfo extends React.Component { history.push({ - pathname: '/GlobalLockInfo', + pathname: '/globallock/list', // @ts-ignore query: { xid: record.xid }, });