Skip to content

Commit

Permalink
Merge pull request #32 from iluxonchik/feature/govbot-0.0.8
Browse files Browse the repository at this point in the history
Feature/govbot 0.0.8
  • Loading branch information
iluxonchik authored Aug 19, 2024
2 parents ac0c9c1 + 91a2432 commit e2b05fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mina-govbot",
"version": "0.0.7",
"version": "0.0.8",
"description": "Discord bot for collective decision making for Mina Protocol",
"main": "index.js",
"directories": {
Expand Down
2 changes: 1 addition & 1 deletion src/channels/admin/screens/ManageFundingRoundsScreen.ts
Original file line number Diff line number Diff line change
Expand Up @@ -641,7 +641,7 @@ export class SetPhaseAction extends Action {
if (phase === FundingRoundMI.PHASES.ROUND) {
const votingOpenUntilInput = new TextInputBuilder()
.setCustomId(SetPhaseAction.INPUT_IDS.VOTING_OPEN_UNTIL)
.setLabel('Funding Round Activation Voting Until (YYYY-MM-DD HH:MM)')
.setLabel('Activation Vote Until (YYYY-MM-DD HH:MM)')
.setStyle(TextInputStyle.Short)
.setValue(votingOpenUntilValue)
.setRequired(true);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export class CreateDraftFundingRoundAction extends Action {

const votingOpenUntilInput = new TextInputBuilder()
.setCustomId(CreateDraftFundingRoundAction.INPUT_IDS.VOTING_OPEN_UNTIL)
.setLabel('Funding Round Activation Voting Until (YYYY-MM-DD HH:MM)')
.setLabel('Activation Vote Until (YYYY-MM-DD HH:MM)')
.setStyle(TextInputStyle.Short)
.setRequired(true);

Expand Down

0 comments on commit e2b05fa

Please sign in to comment.