Skip to content

Commit

Permalink
Merge pull request #264 from HathorNetwork/dev
Browse files Browse the repository at this point in the history
Release v0.18.1
  • Loading branch information
r4mmer authored May 21, 2024
2 parents f91af7b + f83f9e6 commit 0151918
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hathor-admin",
"version": "0.18.0",
"version": "0.18.1",
"private": true,
"dependencies": {
"@hathor/wallet-lib": "1.4.0",
Expand Down
4 changes: 4 additions & 0 deletions src/components/tx/TxData.js
Original file line number Diff line number Diff line change
Expand Up @@ -637,6 +637,10 @@ class TxData extends React.Component {
}

const renderNCArguments = (args) => {
if (!Array.isArray(args) || args.length === 0) {
return ' - ';
}

return args.map((arg) => (
<div key={arg.name}>
<label>{arg.name}:</label> {renderArgValue(arg)}
Expand Down
2 changes: 1 addition & 1 deletion src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export const TESTNET_GENESIS_TX = [

export const DECIMAL_PLACES = 2;

export const VERSION = '0.18.0';
export const VERSION = '0.18.1';

export const MIN_API_VERSION = '0.33.0';

Expand Down

0 comments on commit 0151918

Please sign in to comment.