Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3109 from cardano-foundation/fix/display-protocol…
Browse files Browse the repository at this point in the history
…-data

fix: add to string for value
  • Loading branch information
Sotatek-TaiTruong authored Mar 4, 2024
2 parents 5b91c56 + cc38f04 commit e8f0063
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/ProtocolParameter/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ const ProtocolParameter: React.FC = () => {
textOverflow={"ellipsis"}
color={({ palette }) => (isModalType ? palette.primary.main : "unset")}
>
{getShortValue(r.value)}
{getShortValue(r.value?.toString())}
</Box>
</Box>
);
Expand Down

0 comments on commit e8f0063

Please sign in to comment.