Skip to content

Commit

Permalink
bugfix: fix the white screen in the console (#6025)
Browse files Browse the repository at this point in the history
  • Loading branch information
liuqiufeng authored Nov 12, 2023
1 parent 21af1bc commit b556e94
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions changes/en-us/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -23,6 +24,7 @@ Thanks to these contributors for their code commits. Please report an unintended
<!-- Please make sure your Github ID is in the list below -->
- [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.
2 changes: 2 additions & 0 deletions changes/zh-cn/develop.md
Original file line number Diff line number Diff line change
Expand Up @@ -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描述
Expand All @@ -23,5 +24,6 @@
<!-- 请确保您的 GitHub ID 在以下列表中 -->
- [slievrly](https://github.com/slievrly)
- [jsbxyyx](https://github.com/jsbxyyx)
- [liuqiufeng](https://github.com/liuqiufeng)

同时,我们收到了社区反馈的很多有价值的issue和建议,非常感谢大家。
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ class TransactionInfo extends React.Component<GlobalProps, TransactionInfoState>
<LinkButton
onClick={() => {
history.push({
pathname: '/GlobalLockInfo',
pathname: '/globallock/list',
// @ts-ignore
query: { xid: record.xid },
});
Expand All @@ -392,7 +392,7 @@ class TransactionInfo extends React.Component<GlobalProps, TransactionInfoState>
<LinkButton
onClick={() => {
history.push({
pathname: '/GlobalLockInfo',
pathname: '/globallock/list',
// @ts-ignore
query: { xid: record.xid },
});
Expand Down

0 comments on commit b556e94

Please sign in to comment.