Skip to content

Commit

Permalink
Increase maximum tag name length
Browse files Browse the repository at this point in the history
  • Loading branch information
BluDood committed Nov 5, 2022
1 parent 1383b88 commit 9cb35f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/tag.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ module.exports = {
.setPlaceholder('Name')
.setLabel('Name')
.setMinLength(1)
.setMaxLength(32)
.setMaxLength(99)
.setRequired(true)
.setStyle(TextInputStyle.Short)

Expand Down Expand Up @@ -137,7 +137,7 @@ module.exports = {
.setPlaceholder('Name')
.setLabel('Name')
.setMinLength(1)
.setMaxLength(32)
.setMaxLength(99)
.setRequired(true)
.setStyle(TextInputStyle.Short)
.setValue(name)
Expand Down

0 comments on commit 9cb35f3

Please sign in to comment.