Skip to content

Commit

Permalink
Merge pull request #2540 from luniehq/release-candidate/v1.0.0-beta.60
Browse files Browse the repository at this point in the history
automatic release created for v1.0.0-beta.60
  • Loading branch information
faboweb authored May 5, 2019
2 parents b1de190 + bca4110 commit 7c3cb7a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.0.0-beta.60] - 2019-05-05

### Fixed

- [#2539](https://github.com/cosmos/lunie/pull/2539) Delegations did not show on my delegations page @faboweb

## [1.0.0-beta.59] - 2019-05-03

### Added
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lunie",
"productName": "lunie",
"version": "1.0.0-beta.59",
"version": "1.0.0-beta.60",
"description": "Lunie is the user interface for the Cosmos Hub.",
"author": "Lunie International Software Systems Inc. <hello@lunie.io>",
"license": "Apache-2.0",
Expand Down
4 changes: 2 additions & 2 deletions src/components/staking/TableValidators.vue
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ export default {
return Object.assign({}, v, {
small_moniker: v.description.moniker.toLowerCase(),
my_delegations:
session.signedIn && committedDelegations[v.id] > 0
? committedDelegations[v.id]
session.signedIn && committedDelegations[v.operator_address] > 0
? committedDelegations[v.operator_address]
: 0,
commission: v.commission.rate,
voting_power: BN(v.tokens)
Expand Down
2 changes: 1 addition & 1 deletion src/vuex/modules/session.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export default () => {
state.errorCollection = enabled
dispatch(`storeLocalPreferences`)

if (state.errorCollection) {
if (state.errorCollection && !state.externals.config.development) {
state.externals.Sentry.init({
dsn: state.externals.config.sentry_dsn,
release: state.externals.config.version
Expand Down

0 comments on commit 7c3cb7a

Please sign in to comment.