Skip to content

Commit

Permalink
fix ui event txs
Browse files Browse the repository at this point in the history
  • Loading branch information
haunv3 committed Nov 16, 2024
1 parent 71f29e4 commit bea4f66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Tx/TxData/TxMessage/TxMessage.js
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ const TxMessage = ({ key, msg, data, ind }) => {
<div className={cx("message")} key={ind}>
<div className={cx("event")}>
<h2 className={cx("event-type")} onClick={() => toggleCollapse(ind)}>
{event.type}
{ind + 1}. {event.type}
</h2>
<table className={cx("event-attribute")} style={{ display: "none" }} ref={el => (contentRefs.current[ind] = el)}>
{event.attributes?.map(attr => (
Expand Down

0 comments on commit bea4f66

Please sign in to comment.