fix layout issue

This commit is contained in:
bignutty 2025-01-17 21:17:37 +01:00
parent 05e6ab5588
commit a3d6e3eca5

View file

@ -55,8 +55,7 @@ function createCommandPage(context, prefix, command, slashCommands) {
if (a.required) argument = "-# Required Parameter\n" + argument;
if (a.help) argument += ` ${a.help}`
argument += `\n `
if (a.default !== "") argument += ` ${smallPill(`default: ${a.default}`)}`
if (a.default !== "") argument += `\n ${smallPill(`default: ${a.default}`)}`
args.push(argument)
}