Skip to content

Commit ecd9f92

Browse files
committed
Fix reveal state bug; release v0.2.8
1 parent bd6ec91 commit ecd9f92

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.2.8] - 2020-03-17
9+
### Fixed
10+
- Fixed a crash when names transitioned from the bidding to revealing state
11+
812
## [0.2.7] - 2020-03-16
913
### Added
1014
- Added an additional warning to the reset screen to highlight how bids need to be re-imported after deleting a wallet

app/pages/Auction/BidActionPanel/Reveal.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ class Reveal extends Component {
164164

165165
return (
166166
<div className="domains__bid-now__info__warning">
167-
You will lose {displayBalance(totalMasks, true)} if you don't reveal before
168-
<Blocktime height={this.props.domain.stats.revealPeriodEnd} format="ll" />
167+
You will lose {displayBalance(totalMasks, true)} if you don't reveal before{' '}
168+
<Blocktime height={this.props.domain.info.stats.revealPeriodEnd} format="ll" />
169169
</div>
170170
);
171171
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "bob-wallet",
33
"productName": "Bob",
44
"author": "Kyokan Group, Inc.",
5-
"version": "0.2.7",
5+
"version": "0.2.8",
66
"description": "A Handshake wallet and auction manager.",
77
"scripts": {
88
"build": "./scripts/package.sh",

0 commit comments

Comments
 (0)