Skip to content
Snippets Groups Projects
Commit 8e6ffffc authored by Nate Rosandich's avatar Nate Rosandich
Browse files

Merge branch 'nrosandich-master-patch-20616' into 'master'

Splice division in compliance priorities

See merge request gitlab-com/www-gitlab-com!138684
parents 55780fce 00cba656
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ appropriate [milestone planning issues](https://gitlab.com/groups/gitlab-org/sof
| ------ | ------ | ------ | ------ | ------ | ------ | ------ |
<% data.product_priorities.compliance.now.each.with_index do |priority, index| %>
<% next if priority.status == "CLOSED" %>
| <%= index + 1 %> | [<%= priority.name %>](<%= priority.url %>) | `<%= priority.dri.presence || "TBD" %>` | `<%= priority.target_release.presence || "TBD" %>` | `<%= priority.division.presence || "TBD" %>` |
| <%= index + 1 %> | [<%= priority.name %>](<%= priority.url %>) | `<%= priority.dri.presence || "TBD" %>` | `<%= priority.target_release.presence || "TBD" %>` | `<%= priority.division.presence ? priority.division.slice(10..-1) : "TBD" %>` |
<% end %>
### Next
......@@ -28,7 +28,7 @@ appropriate [milestone planning issues](https://gitlab.com/groups/gitlab-org/sof
| ------ | ------ | ------ | ------ | ------ | ------ | ------ |
<% data.product_priorities.compliance.next.each.with_index do |priority, index| %>
<% next if priority.status == "CLOSED" %>
| <%= index + 1 %> | [<%= priority.name %>](<%= priority.url %>) | `<%= priority.dri.presence || "TBD" %>` | `<%= priority.target_release.presence || "TBD" %>` | `<%= priority.division.presence || "TBD" %>` |
| <%= index + 1 %> | [<%= priority.name %>](<%= priority.url %>) | `<%= priority.dri.presence || "TBD" %>` | `<%= priority.target_release.presence || "TBD" %>` | `<%= priority.division.presence ? priority.division.slice(10..-1) : "TBD" %>` |
<% end %>
### Later
......@@ -37,7 +37,7 @@ appropriate [milestone planning issues](https://gitlab.com/groups/gitlab-org/sof
| ------ | ------ | ------ | ------ | ------ | ------ | ------ |
<% data.product_priorities.compliance.later.each.with_index do |priority, index| %>
<% next if priority.status == "CLOSED" %>
| <%= index + 1 %> | [<%= priority.name %>](<%= priority.url %>) | `<%= priority.dri.presence || "TBD" %>` | `<%= priority.target_release.presence || "TBD" %>` | `<%= priority.division.presence || "TBD" %>` |
| <%= index + 1 %> | [<%= priority.name %>](<%= priority.url %>) | `<%= priority.dri.presence || "TBD" %>` | `<%= priority.target_release.presence || "TBD" %>` | `<%= priority.division.presence ? priority.division.slice(10..-1) : "TBD" %>` |
<% end %>
### Ongoing
......@@ -46,7 +46,7 @@ appropriate [milestone planning issues](https://gitlab.com/groups/gitlab-org/sof
| ------ | ------ | ------ | ------ | ------ | ------ | ------ |
<% data.product_priorities.compliance.ongoing.each.with_index do |priority, index| %>
<% next if priority.status == "CLOSED" %>
| <%= index + 1 %> | [<%= priority.name %>](<%= priority.url %>) | `<%= priority.dri.presence || "TBD" %>` | `<%= priority.target_release.presence || "TBD" %>` | `<%= priority.division.presence || "TBD" %>` |
| <%= index + 1 %> | [<%= priority.name %>](<%= priority.url %>) | `<%= priority.dri.presence || "TBD" %>` | `<%= priority.target_release.presence || "TBD" %>` | `<%= priority.division.presence ? priority.division.slice(10..-1) : "TBD" %>` |
<% end %>
### Uncategorised
......@@ -55,5 +55,5 @@ appropriate [milestone planning issues](https://gitlab.com/groups/gitlab-org/sof
| ------ | ------ | ------ | ------ | ------ | ------ | ------ |
<% data.product_priorities.compliance.uncategorised.each.with_index do |priority, index| %>
<% next if priority.status == "CLOSED" %>
| <%= index + 1 %> | [<%= priority.name %>](<%= priority.url %>) | `<%= priority.dri.presence || "TBD" %>` | `<%= priority.target_release.presence || "TBD" %>` | `<%= priority.division.presence || "TBD" %>` |
| <%= index + 1 %> | [<%= priority.name %>](<%= priority.url %>) | `<%= priority.dri.presence || "TBD" %>` | `<%= priority.target_release.presence || "TBD" %>` | `<%= priority.division.presence ? priority.division.slice(10..-1) : "TBD" %>` |
<% end %>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment