Skip to content

Commit

Permalink
Fix on going => ongoing
Browse files Browse the repository at this point in the history
  • Loading branch information
adamscott committed Nov 14, 2024
1 parent 1349590 commit ff7aabc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/css/priorities/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ html {
width: $element-meta-planning-bar-width;
}

// On going.
// Ongoing.
@at-root #{selector-replace(&, ".element-stage", ".element-stage.ongoing")} {
width: $element-meta-ongoing-bar-width;
}
Expand Down
2 changes: 1 addition & 1 deletion pages/priorities/_includes/element.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
{% assign current_stage = "Done" %}
{% elsif element.stage.ongoing != "" %}
{% assign element_stage_classes = element_stage_classes | push: "ongoing" %}
{% assign current_stage = "On going" %}
{% assign current_stage = "Ongoing" %}
{% elsif element.stage.planning != "" %}
{% assign element_stage_classes = element_stage_classes | push: "planning" %}
{% assign current_stage = "Planning" %}
Expand Down

0 comments on commit ff7aabc

Please sign in to comment.