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 2f3f561 commit 80309b2Copy full SHA for 80309b2
src/plus/focus/focus.ts
@@ -381,7 +381,7 @@ export class FocusCommand extends QuickCommand<State> {
381
);
382
383
return {
384
- label: i.title,
+ label: i.title.length > 60 ? `${i.title.substring(0, 60)}...` : i.title,
385
// description: `${i.repoAndOwner}#${i.id}, by @${i.author}`,
386
description: `\u00a0 ${i.repository.owner.login}/${i.repository.name}#${i.id} \u00a0 ${
387
i.codeSuggestionsCount > 0
0 commit comments