Skip to content

Commit

Permalink
DOP-4549 logging repo length again
Browse files Browse the repository at this point in the history
  • Loading branch information
anabellabuckvar committed Apr 16, 2024
1 parent 9f39e94 commit 67d14b8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/services/slack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,14 +208,14 @@ export class SlackConnector implements ISlackConnector {
{
label: {
type: 'plain_text',
text: 'group 1',
text: `${repos.length}`,
},
options: repos.slice(0, 30),
options: repos.slice(0, 50),
},
{
label: {
type: 'plain_text',
text: 'group 2',
text: `${repos[-1]}`,
},
options: repos.slice(50, repos.length),
},
Expand Down

0 comments on commit 67d14b8

Please sign in to comment.