Skip to content

Commit 2c76afd

Browse files
authored
Merge pull request #449 from crypto-com/V0.2.0-CHANGE-LOG
V0.2.0 CHANGE LOG update
2 parents a121d80 + 634988c commit 2c76afd

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file.
66

77
*Released*
88

9+
## [v0.2.0] - 2021-04-17
10+
11+
### Additions
12+
- Governance support added to the desktop wallet app
13+
- Supporting all proposal types listing and grouping
14+
- Support vote broadcasting on current selected proposal
15+
916
## [v0.1.6] - 2021-04-14
1017

1118
### Additions

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chain-desktop-wallet",
3-
"version": "0.1.6",
3+
"version": "0.2.0",
44
"description": "Crypto.com Chain Desktop Wallet App",
55
"repository": "github:crypto-com/chain-desktop-wallet",
66
"author": "Crypto.org <[email protected]>",

src/pages/governance/governance.less

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@
8888
.ant-card-head-title {
8989
color: @azure;
9090
}
91+
.vote-result-section {
92+
padding-bottom: 10px;
93+
}
9194
.ant-radio-group {
9295
width: 100%;
9396
text-align: center;

src/pages/governance/governance.tsx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ const GovernancePage = () => {
386386
<Sider width="300px">
387387
<Spin spinning={isLoadingTally} tip="Loading latest results">
388388
<Card title="Current results" style={{ padding: '4px' }}>
389-
<div>
389+
<div className="vote-result-section">
390390
Yes - Support
391391
<br />
392392
{/* Vote: {proposalFigures.yes.vote} */}
@@ -400,7 +400,8 @@ const GovernancePage = () => {
400400
}}
401401
/>
402402
</div>
403-
<div>
403+
404+
<div className="vote-result-section">
404405
No - Do not support
405406
<br />
406407
{/* Vote: {proposalFigures.no.vote} */}
@@ -414,7 +415,8 @@ const GovernancePage = () => {
414415
status="normal"
415416
/>
416417
</div>
417-
<div>
418+
419+
<div className="vote-result-section">
418420
No with Veto - Do not support
419421
<br />
420422
{/* Vote: {proposalFigures.no.vote} */}
@@ -428,7 +430,8 @@ const GovernancePage = () => {
428430
status="normal"
429431
/>
430432
</div>
431-
<div>
433+
434+
<div className="vote-result-section">
432435
Abstain - Undecided
433436
<br />
434437
{/* Vote: {proposalFigures.no.vote} */}

0 commit comments

Comments
 (0)