Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: minor bug #886

Merged
merged 1 commit into from
Apr 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Bug fixes

- [#886](https://github.com/alleslabs/celatone-frontend/pull/886) Fix tx detail message newline
- [#885](https://github.com/alleslabs/celatone-frontend/pull/885) Fix voted proposals freeze columns
- [#881](https://github.com/alleslabs/celatone-frontend/pull/881) Fix abi option boolean problem
- [#877](https://github.com/alleslabs/celatone-frontend/pull/877) Fix validator list/details bug bash
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/ExplorerLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ export const ExplorerLink = ({
) : (
<Flex
className="copier-wrapper"
display={{ base: "inline-flex", md: "flex" }}
display="inline-flex"
align="center"
h={fixedHeight ? "24px" : "auto"}
transition="all 0.25s ease-in-out"
Expand Down
2 changes: 1 addition & 1 deletion src/lib/pages/publish-module/publish.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ export const PublishModule = ({

return (
<>
<PageContainer display="inline" p={0}>
<PageContainer p={0}>
<Box minH="inherit" maxW="1440px" mx="auto">
<Grid
templateColumns="1fr 6fr 4fr 1fr"
Expand Down
Loading