We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fef5ed7 commit 80f9b49Copy full SHA for 80f9b49
extensions/cli/src/ui/SlashCommandUI.tsx
@@ -10,7 +10,10 @@ const truncateDescription = (description: string): string => {
10
if (description.length <= MAX_DESCRIPTION_LENGTH) {
11
return description;
12
}
13
- return Array.from(description).slice(0, MAX_DESCRIPTION_LENGTH).join("").trim() + "…";
+ return (
14
+ Array.from(description).slice(0, MAX_DESCRIPTION_LENGTH).join("").trim() +
15
+ "…"
16
+ );
17
};
18
19
interface SlashCommandUIProps {
0 commit comments