Skip to content

Commit dd87925

Browse files
committed
feat(matrix): default page to showing 'latest by consumer version and provider' as it is much quicker and less confusing.
1 parent 3c504ba commit dd87925

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/pact_broker/ui/controllers/matrix.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ class Matrix < Base
4242

4343
get "/provider/:provider_name/consumer/:consumer_name" do
4444
selectors = [{ pacticipant_name: params[:consumer_name] }, { pacticipant_name: params[:provider_name] } ]
45-
options = {latestby: nil, limit: 100}
45+
options = {latestby: 'cvpv', limit: 100}
4646
lines = matrix_service.find(selectors, options)
4747
lines = PactBroker::UI::ViewDomain::MatrixLines.new(lines)
4848
locals = {

0 commit comments

Comments
 (0)