Skip to content

Commit

Permalink
fix: change UI classe from mr to me (#305)
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroferreira1 authored Aug 29, 2024
1 parent e37fee7 commit 089cfa5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/nano/NanoContractHistory.js
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ function NanoContractHistory({ ncId }) {
<ul className="pagination">
<li
className={
!hasBefore || history.length === 0 ? 'page-item mr-3 disabled' : 'page-item mr-3'
!hasBefore || history.length === 0 ? 'page-item me-3 disabled' : 'page-item me-3'
}
>
<Link
Expand Down
2 changes: 1 addition & 1 deletion src/screens/nano/BlueprintDetail.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ function BlueprintDetail(props) {
{renderBlueprintMethods('public_methods', 'Public Methods')}
{renderBlueprintMethods('private_methods', 'Private Methods')}
<div className="d-flex flex-row align-items-center mb-4 mt-4">
<h4 className="mb-0 mr-3">Source Code</h4>
<h4 className="mb-0 me-3">Source Code</h4>
<a href="true" onClick={e => onToggleShowCode(e)}>
{showCode ? 'Hide' : 'Show'}
</a>
Expand Down

0 comments on commit 089cfa5

Please sign in to comment.