Skip to content

Commit

Permalink
Fixes: mintable error, slight border issues
Browse files Browse the repository at this point in the history
  • Loading branch information
fl-y committed Jun 5, 2020
1 parent 6ad6370 commit 5eca5ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/Asset/Details/Details.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default function Details({asset}) {
</span>
</InfoRow>
<InfoRow label={"Supply"}>{formatNumber(asset?.supply)}</InfoRow>
<InfoRow label={"Mintable"}>{asset?.mintable !== 1 ? "No" : "Yes"}</InfoRow>
<InfoRow label={"Mintable"}>{asset?.mintable === 1 ? "No" : "Yes"}</InfoRow>
<InfoRow label={"Price"}>
{formattedPrice ? (
<>
Expand Down
2 changes: 1 addition & 1 deletion src/components/BlockList/Table/Table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
display: none;
}
.thinTableRows-wrapper {
> :nth-child(even) {
> :nth-child(odd) {
background-color: #fbfbfc;
}
> :first-child {
Expand Down
2 changes: 1 addition & 1 deletion src/components/TxList/Table/Table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@
.tableDivider {
width: 100%;
height: 0;
border: solid 1px #e6e6e6;
border-bottom: solid 1px #e6e6e6;
}

0 comments on commit 5eca5ca

Please sign in to comment.