fix "/? slash"

This commit is contained in:
LenAnderson 2024-04-16 17:00:03 -04:00
parent 63e88bc016
commit acdfd10752
1 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,6 @@ export class SlashCommand {
;
aliases += ')';
}
return `<span class="monospace">/${this.name}</span>${this.helpString}${aliases}`;
return `<span class="monospace">/${this.name}</span> ${this.helpString}${aliases}`;
}
}