Skip to content

Commit

Permalink
Merge pull request #7 from OmniFlix/vote_update
Browse files Browse the repository at this point in the history
voting update.
  • Loading branch information
SrikanthSoparla authored Oct 14, 2021
2 parents 5616733 + 84adf00 commit 0871768
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/containers/Proposals/ProposalDialog/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class ProposalDialog extends Component {
this.props.proposal.content.type}</p>
</div>
</div>
{this.props.proposal && this.props.proposal.status === 2 && !votedOption && !this.props.voteDetailsInProgress
{this.props.proposal && this.props.proposal.status === 2 && !this.props.voteDetailsInProgress
? <Voting proposalId={this.props.proposal && this.props.proposal.id}/>
: null}
</div>
Expand Down
3 changes: 3 additions & 0 deletions src/containers/Proposals/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@
.proposals .card_heading .details {
display: flex;
align-items: center;
width: 100%;
}

.proposals .card_heading .details > p {
Expand All @@ -119,6 +120,8 @@
line-height: 130%;
text-align: right;
color: #696969;
width: 100%;
margin-left: 10px;
}

.proposals .card_heading .details > button {
Expand Down

0 comments on commit 0871768

Please sign in to comment.