Skip to content

Commit

Permalink
Merge pull request #881 from cosmos/billy/451-cache-validators
Browse files Browse the repository at this point in the history
cached validators #451
  • Loading branch information
faboweb authored Jun 25, 2018
2 parents 950cfb6 + beb8ebf commit a0e4d9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
* Removed COSMOS_MOCKED flag @faboweb
* Improved readability and accessibility @jolesbi
* Significant style / UI updates @jolesbi
* Doesn't show loading screen when validators are still stored @okwme

### Fixed

Expand Down
4 changes: 2 additions & 2 deletions app/src/renderer/components/staking/PageStaking.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ page(title='Staking')
modal-search(type="delegates" v-if="somethingToSearch")

.delegates-container
data-loading(v-if="delegates.loading")
data-loading(v-if="delegates.loading && delegates.delegates.length === 0")
data-empty(v-else-if="delegates.delegates.length === 0")
data-empty-search(v-else-if="filteredDelegates.length === 0")
template(v-else)
Expand Down Expand Up @@ -41,7 +41,7 @@ import Part from "common/NiPart"
import PanelSort from "staking/PanelSort"
import ToolBar from "common/NiToolBar"
export default {
name: "page-delegates",
name: "page-staking",
components: {
LiDelegate,
Btn,
Expand Down

0 comments on commit a0e4d9e

Please sign in to comment.