Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Bizon <grzesiek.bizon@gmail.com>2022-11-28 12:41:51 +0300
committerGrzegorz Bizon <grzesiek.bizon@gmail.com>2022-11-28 12:41:51 +0300
commitb0d1f0033fe7c088551c76ee50248b4c9447d378 (patch)
treeddb27722703d8b8def87c06f1e432551f6096c55 /layouts
parentcfd448781e1839d07559a059861805e527fde88e (diff)
Render blueprint owners as DRIs
Diffstat (limited to 'layouts')
-rw-r--r--layouts/blueprints/table.erb6
1 files changed, 3 insertions, 3 deletions
diff --git a/layouts/blueprints/table.erb b/layouts/blueprints/table.erb
index 3c2571e4..9c87f75b 100644
--- a/layouts/blueprints/table.erb
+++ b/layouts/blueprints/table.erb
@@ -10,10 +10,10 @@
<% unless @summary %>
<th>Title</th>
<% end %>
- <th>Author(s)</th>
+ <th>Authors</th>
<th>Coach</th>
<% if @summary %>
- <th>Approver(s)</th>
+ <th>DRIs</th>
<% end %>
<th>Owning Stage</th>
<th>Created</th>
@@ -42,7 +42,7 @@
</td>
<% if @summary %>
<td>
- <% b[:approvers]&.each do |a| %>
+ <% (b[:approvers] || b[:owners]).to_a.each do |a| %>
<code><%= author_link(a) %></code>
<% end %>
</td>