Skip to content

Commit

Permalink
Merge pull request #49 from kaleido-io/tokens-bugs
Browse files Browse the repository at this point in the history
[tokens-bugs]
  • Loading branch information
dechdev authored Apr 13, 2022
2 parents 7f9d289 + c2090f2 commit ef0aa65
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ui/src/components/Accordion/TokensStateAccordion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ export const TokenStateAccordion: React.FC = () => {
tokenBalanceMap[poolIDKey].balances.every(
(b) => b.tokenIndex === undefined
)
? t('nonfungible')
: t('fungible')
? t('fungible')
: t('nonfungible')
})`}
</Typography>
</Grid>
Expand Down
2 changes: 1 addition & 1 deletion ui/src/pages/Home/views/RightPane.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const RightPane: React.FC = () => {
Array.from(logHistory.entries())
.reverse()
.map(([txID, value], idx) => (
<Grid pb={1} key={idx}>
<Grid pb={1} key={idx} width="100%">
<Accordion
defaultExpanded={idx === 0}
sx={{ paddingBottom: 1 }}
Expand Down

0 comments on commit ef0aa65

Please sign in to comment.