Skip to content

Commit

Permalink
fix: badgeify "Serious Issues", "On the right track" review summaries. (
Browse files Browse the repository at this point in the history
#7809)

Addresses #7808
  • Loading branch information
wkumari authored Aug 8, 2024
1 parent c4ff0a5 commit 1252cd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ietf/doc/templatetags/ietf_filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -856,10 +856,10 @@ def badgeify(blob):
Add an appropriate bootstrap badge around "text", based on its contents.
"""
config = [
(r"rejected|not ready", "danger", "x-lg"),
(r"rejected|not ready|serious issues", "danger", "x-lg"),
(r"complete|accepted|ready", "success", ""),
(r"has nits|almost ready", "info", "info-lg"),
(r"has issues", "warning", "exclamation-lg"),
(r"has issues|on the right track", "warning", "exclamation-lg"),
(r"assigned", "info", "person-plus-fill"),
(r"will not review|overtaken by events|withdrawn", "secondary", "dash-lg"),
(r"no response", "warning", "question-lg"),
Expand Down

0 comments on commit 1252cd2

Please sign in to comment.