Skip to content

Commit

Permalink
Metrics - peer strength - Improve UI tooltip explanation
Browse files Browse the repository at this point in the history
  • Loading branch information
morucci committed Aug 16, 2023
1 parent 492424a commit 9309744
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion web/src/components/PeersStrengthView.res
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ let make = (~store: Store.t, ~stacked: bool, ~extraQuery: option<string>=?) => {
let (state, _) = store
let (limit, setLimit) = React.useState(() => 25)
let limit_values = list{10, 25, 50, 100, 500}
let tooltip_content = "This shows the strength between change authors and peer reviewers"
let tooltip_content =
"This shows the strength between change authors and peer reviewers. " ++
"Each line of the table shows a strength value between a change's author and a peer reviewer. " ++ "The strength value is the count of comments + the count of reviews performed by the peer on the author' changes."
let baseRequest = Store.mkSearchRequest(state, SearchTypes.Query_top_authors_peers)
let request = {
...baseRequest,
Expand Down

0 comments on commit 9309744

Please sign in to comment.