Skip to content

Commit

Permalink
DOP-4549 remove 100 item truncation
Browse files Browse the repository at this point in the history
  • Loading branch information
anabellabuckvar committed Apr 16, 2024
1 parent 67d14b8 commit 15e4c2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/slack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ export class SlackConnector implements ISlackConnector {
//'[ERROR] no more than 100 items allowed [json-pointer:/view/blocks/0/element/options]'

if (reposToShow.length > 100) {
reposToShow = reposToShow.sort().reverse().splice(0, 100);
reposToShow = reposToShow.sort().reverse();
}

//sort versions like so: 4.1, 4.2, 4.11
Expand Down

0 comments on commit 15e4c2a

Please sign in to comment.