Change default reason from Completed to Done

This commit is contained in:
Andy Smith
2025-10-10 15:04:47 -05:00
parent 81ce61aa9e
commit 5ff50fd352
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
class Closure::Reason < ApplicationRecord
DEFAULT_LABELS = [
"Completed",
"Done",
"Duplicate",
"Maybe later",
"Working as intended",
+1 -1
View File
@@ -17,7 +17,7 @@
<%= button_to_set_column card, column %>
<% end %>
<%= button_to "Done", card_closure_path(card, reason: "Completed"),
<%= button_to "Done", card_closure_path(card, reason: "Done"),
class: [ "workflow-stage btn", { "workflow-stage--current": card.closed? } ],
role: "radio",
aria: { checked: card.closed? },