Skip to content

Commit

Permalink
bugfix: fix the white screen after click the "View Global Lock" butto…
Browse files Browse the repository at this point in the history
…n on the transaction info page in the console (#6024)
  • Loading branch information
liuqiufeng authored Nov 12, 2023
1 parent 93a7fa1 commit 1de3532
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions changes/en-us/2.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ The version is updated as follows:
- [[#5990](https://github.com/seata/seata/pull/5990)] fix the issue that the Lua script is not synchronized when the redis sentinel master node is down
- [[#5887](https://github.com/seata/seata/pull/5887)] fix global transaction hook repeat execute
- [[#6018](https://github.com/seata/seata/pull/6018)] fix incorrect metric report
- [[#6024](https://github.com/seata/seata/pull/6024)] fix the white screen after click the "View Global Lock" button on the transaction info page in the console

### optimize:
- [[#5966](https://github.com/seata/seata/pull/5966)] decouple saga expression handling and remove evaluator package
Expand Down
1 change: 1 addition & 0 deletions changes/zh-cn/2.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ Seata 是一款开源的分布式事务解决方案,提供高性能和简单
- [[#5990](https://github.com/seata/seata/pull/5990)] 修复redis sentinel master node 宕机时,lua脚本未同步的问题
- [[#5887](https://github.com/seata/seata/pull/5887)] 修复全局事务钩子重复执行
- [[#6018](https://github.com/seata/seata/pull/6018)] 修复错误的 metric 上报
- [[#6024](https://github.com/seata/seata/pull/6024)] 修复控制台点击事务信息页面中的"查看全局锁"按钮之后白屏的问题


### optimize:
Expand Down
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 1de3532

Please sign in to comment.