Skip to content

Commit

Permalink
Merge pull request #598 from alleslabs/impv/proposal-content
Browse files Browse the repository at this point in the history
feat: display content field for submit proposal tx details
  • Loading branch information
evilpeach authored Oct 31, 2023
2 parents 016fd25 + 1b20671 commit d135716
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Improvements

- [#598](https://github.com/alleslabs/celatone-frontend/pull/598) Display content field for submit proposal tx details
- [#587](https://github.com/alleslabs/celatone-frontend/pull/587) Make block row clickable
- [#579](https://github.com/alleslabs/celatone-frontend/pull/579) Improve ux writing for recent items page
- [#546](https://github.com/alleslabs/celatone-frontend/pull/546) Handle 404 on the current selected chain
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -618,12 +618,9 @@ export const generateReceipts = (
value: String(details.is_expedited ?? false),
},
{ title: "Title", value: details.content.title },
details.content.changes && {
title: "Parameter Changes",
html: getCommonReceiptHtml({
type: "json",
value: details.content.changes,
}),
{
title: "Content",
html: getCommonReceiptHtml({ type: "json", value: details.content }),
},
];
}
Expand Down

3 comments on commit d135716

@vercel
Copy link

@vercel vercel bot commented on d135716 Oct 31, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on d135716 Oct 31, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on d135716 Oct 31, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.