From dfc115ae57babff67c7b620acb84ffdf4aca0e89 Mon Sep 17 00:00:00 2001 From: Amaryllis Date: Tue, 19 Dec 2023 10:33:12 +0100 Subject: [PATCH] Make desc shorter, it's too long, and use placeholder --- commands/jira/create-bug.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/jira/create-bug.ts b/commands/jira/create-bug.ts index a872134..2979944 100644 --- a/commands/jira/create-bug.ts +++ b/commands/jira/create-bug.ts @@ -36,7 +36,8 @@ module.exports = { const descInput = new TextInputBuilder() .setCustomId('desc') - .setLabel("Description/More info (Platform, beta, release, etc.)") + .setLabel("Description/More info") + .setPlaceholder("Type in any additional information such as which platform.") .setRequired(false) .setMaxLength(1000) .setStyle(TextInputStyle.Paragraph);