Skip to content

Commit

Permalink
- deploy internal and testnet from development
Browse files Browse the repository at this point in the history
- fix transaction action aria-label content
  • Loading branch information
radumojic committed Mar 19, 2024
1 parent 2c445a6 commit d6dbb08
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: deploy-internal

on:
push:
branches: [feature/staking-v4]
branches: [development]
repository_dispatch:
types: deploy-internal
workflow_dispatch:
Expand All @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
ref: feature/staking-v4
ref: development
- name: Use Node.js
uses: actions/setup-node@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-testnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: deploy-testnet

on:
push:
branches: [feature/staking-v4]
branches: [development]
repository_dispatch:
types: deploy-testnet
workflow_dispatch:
Expand All @@ -14,7 +14,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
ref: feature/staking-v4
ref: development
- name: Use Node.js
uses: actions/setup-node@v1
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ export const TransactionActionNft = ({
className={`d-flex text-truncate ${
token.svgUrl ? 'side-link' : ''
}`}
{...(token.type === NftTypeEnum.MetaESDT
? { 'aria-label': displayIdentifier }
{...(token.type === NftTypeEnum.MetaESDT && token?.identifier
? { 'aria-label': token.identifier }
: {})}
>
{token.type === NftTypeEnum.MetaESDT && token?.svgUrl ? (
Expand Down

0 comments on commit d6dbb08

Please sign in to comment.