From 687d46476b30bf758a241c7d6cdb7765161c3ccd Mon Sep 17 00:00:00 2001 From: Beth Skurrie Date: Thu, 25 Feb 2021 13:30:10 +1100 Subject: [PATCH] fix: fix missing verification status colours in matrix rows --- lib/pact_broker/ui/view_models/matrix_line.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/pact_broker/ui/view_models/matrix_line.rb b/lib/pact_broker/ui/view_models/matrix_line.rb index 18048618f..352e03923 100644 --- a/lib/pact_broker/ui/view_models/matrix_line.rb +++ b/lib/pact_broker/ui/view_models/matrix_line.rb @@ -188,8 +188,8 @@ def pact_published_order def verification_status_class case @line.success - when true then 'success' - when false then 'danger' + when true then 'table-success' + when false then 'table-danger' else '' end end