Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
aeternity-bot authored Mar 25, 2024
2 parents e6f837e + 4a8a917 commit b8a1b3b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.11.1](https://github.com/aeternity/aescan/compare/0.11.0...0.11.1) (2024-03-25)


### Bug Fixes

* microblocks tabs visibility ([9d20189](https://github.com/aeternity/aescan/commit/9d20189acbc9316b96221bbc9f2e5f47aac6a8a6))

## [0.11.0](https://github.com/aeternity/aescan/compare/0.10.0...0.11.0) (2024-01-22)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aescan",
"version": "0.11.0",
"version": "0.11.1",
"private": true,
"author": "æternity",
"description": "æScan is a blockchain explorer, analytics platform, and decentralized smart contract navigation platform based on æternity",
Expand Down
2 changes: 1 addition & 1 deletion src/pages/accounts/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const { fetchAccount } = accountStore
const route = useRoute()
const isAccountExistent = computed(() => {
return accountDetails.value && !(accountDetails.value?.isExistent === false)
return accountDetails.value && accountDetails.value.isExistent !== false
})
const isTabsVisible = computed(() => process.client &&
Expand Down
2 changes: 1 addition & 1 deletion src/pages/keyblocks/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const route = useRoute()
const { isLoading } = useLoading()
const isKeyblockExistent = computed(() => keyblockDetails.value && !!keyblockDetails.value.isExistent)
const isKeyblockExistent = computed(() => keyblockDetails.value && keyblockDetails.value.isExistent !== false)
await useAsyncData(async() => {
await fetchKeyblock(route.params.id)
Expand Down

0 comments on commit b8a1b3b

Please sign in to comment.