Skip to content

Commit

Permalink
increasing the number of results
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronpowell committed Jul 22, 2019
1 parent 982ae96 commit 60b64cc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions DDDApi.Functions/v2/SlackVoteCommands.fs
Original file line number Diff line number Diff line change
Expand Up @@ -115,17 +115,17 @@ let getVotesSummary
let devVotes =
voteBreakdown
|> Seq.filter (fun vote -> vote.Track = "Development")
|> Seq.truncate 10
|> Seq.truncate 20

let jdVotes =
voteBreakdown
|> Seq.filter (fun vote -> vote.Track = "Junior Dev")
|> Seq.truncate 5
|> Seq.truncate 15

let dataDesignVotes =
voteBreakdown
|> Seq.filter (fun vote -> vote.Track = "Data" || vote.Track = "Design")
|> Seq.truncate 5
|> Seq.truncate 15

let txt =
sprintf
Expand Down

0 comments on commit 60b64cc

Please sign in to comment.