Skip to content

Commit

Permalink
v3. GOV. Deposit period actions are not coded #176
Browse files Browse the repository at this point in the history
  • Loading branch information
atmoner committed Jan 17, 2024
1 parent e6e697a commit 6c1c417
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pages/proposals/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,8 @@
<v-row class="mt-2">
<v-col md="6">
Voting period start<br />
<span v-if="selectedProposal.voting_start_time">{{ formatDate(selectedProposal?.voting_start_time) }}</span><br /><br />
<span v-if="selectedProposal.voting_start_time">{{ formatDate(selectedProposal?.voting_start_time) }}</span>
<span v-else><v-chip color="green">At the end deposit period</v-chip></span><br /><br />
<v-sheet
class="mb-2"
outlined
Expand Down Expand Up @@ -380,7 +381,7 @@
</v-col>
<v-col md="6">
Voting period end<br />
<span v-if="selectedProposal.deposit_end_time">{{ formatDate(selectedProposal?.deposit_end_time) }}</span><br /><br />
<span v-if="selectedProposal.deposit_end_time"><v-chip color="green">{{ formatDate(selectedProposal?.deposit_end_time) }}</v-chip></span><br /><br />
<v-sheet
class="mb-2"
outlined
Expand Down

0 comments on commit 6c1c417

Please sign in to comment.