Skip to content

Commit

Permalink
revert: Changes to the tx history
Browse files Browse the repository at this point in the history
  • Loading branch information
usame-algan committed Aug 29, 2023
1 parent 2c33674 commit c748e45
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/transactions/TxInfo/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const TransferTx = ({
}

const CustomTx = ({ info }: { info: Custom }): ReactElement => {
return <>{!info.humanDescription && info.methodName}</>
return <>{info.methodName}</>
}

const CreationTx = ({ info }: { info: Creation }): ReactElement => {
Expand Down
5 changes: 4 additions & 1 deletion src/components/transactions/TxSummary/styles.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@
}

.columnTemplateTxHistory {
grid-template-columns: minmax(50px, 0.25fr) 5fr 2.5fr 1fr 1.5fr;
grid-template-columns: minmax(50px, 0.25fr) minmax(150px, 2fr) minmax(150px, 2fr) minmax(100px, 1fr) minmax(
170px,
1fr
);
grid-template-areas: 'nonce type info date status';
}

Expand Down

0 comments on commit c748e45

Please sign in to comment.