-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jordan/2188 page network bug #2214
Merged
Merged
Changes from 13 commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
e0f17f7
fixed tm-page page-network loading inconsistencies
jbibla e3fbeb1
fixed snaperoos
jbibla 1d1dbb2
no message
jbibla 6ba1e20
added data empty with one prop type
jbibla 1920ab5
Merge branch 'develop' into jordan/2188-page-network-bug
jbibla 6071f40
loaded is not needed
jbibla b6401cf
Merge branch 'jordan/2188-page-network-bug' of https://github.com/cos…
jbibla c7347c6
fixed data-empty being reverse
9340bae
Merge branch 'develop' into jordan/2188-page-network-bug
jbibla 89b679a
Update PENDING.md
faboweb 03d6f5d
Merge branch 'develop' into jordan/2188-page-network-bug
fedekunze 04b83bb
Merge branch 'develop' into jordan/2188-page-network-bug
faboweb bf7d24f
Merge branch 'develop' into jordan/2188-page-network-bug
sabau 101decf
Merge branch 'develop' into jordan/2188-page-network-bug
faboweb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
### Fixed | ||
|
||
- [#\2188](https://github.com/cosmos/voyager/issues/2188) Fixed issues with the way we were loading PageNetwork @jbibla | ||
|
||
### Added | ||
|
||
- [\#1959](https://github.com/cosmos/voyager/issues/1959) display transactions on block page @fedekunze | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,20 @@ | ||
<template> | ||
<tm-data-msg> | ||
<div slot="title"> | ||
Waiting for connection | ||
<div class="tm-data-msg"> | ||
<img class="tm-data-msg__icon" src="~assets/images/loader.svg"> | ||
<div class="tm-data-msg__text"> | ||
<div slot="title" class="tm-data-msg__title"> | ||
Finding connection | ||
</div> | ||
<div slot="subtitle" class="tm-data-msg__subtitle"> | ||
You are currently not connected to a node. We will load this information | ||
when a connection is established. | ||
</div> | ||
</div> | ||
<div slot="subtitle"> | ||
You are currently not connected to a node. Voyager will load this data | ||
when a connection is established. | ||
</div> | ||
</tm-data-msg> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import TmDataMsg from "common/TmDataMsg" | ||
export default { | ||
name: `tm-data-connecting`, | ||
components: { TmDataMsg } | ||
name: `tm-data-connecting` | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't we cover the case when we have no proposals with the new Boolean dataEmpty?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes, we do. but currently the logic for this is in TabProposals, not PageGov. Our page structure is a bit funny. But this is not needed here, now.
#2237 #2060