From 1fa527a6b9c27e229d316457e62106edd0d9d8d1 Mon Sep 17 00:00:00 2001 From: Kai Wagner Date: Tue, 13 Jan 2026 18:56:08 +0100 Subject: [PATCH] add the same tooltip to the participants view Signed-off-by: Kai Wagner --- app/views/topics/_participant_row.html.slim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/topics/_participant_row.html.slim b/app/views/topics/_participant_row.html.slim index cb49d59..283e57a 100644 --- a/app/views/topics/_participant_row.html.slim +++ b/app/views/topics/_participant_row.html.slim @@ -29,7 +29,7 @@ .participant-details - name_classes = ["participant-name-link"] - name_classes << "is-committer" if membership_types.include?("committer") - .participant-name = link_to alias_record.name, person_path(alias_record.email), class: name_classes.join(" ") + .participant-name = link_to alias_record.name, person_path(alias_record.email), class: name_classes.join(" "), title: tooltip - if membership_icons.any? .participant-memberships - membership_icons.each do |entry|