Copy edits

This commit is contained in:
Jason Zimdars
2025-07-02 15:08:56 -05:00
parent 33768757db
commit ca70d47576
2 changed files with 9 additions and 9 deletions
@@ -1,16 +1,16 @@
class Prompts::CommandsController < ApplicationController
def index
@commands = [
[ "/add_card", "Create a new card", "/add_card " ],
[ "/assign", "Assign cards to users", "/assign @" ],
[ "/clear", "Clear current filters", "/clear" ],
[ "/close", "Close cards with a reason", "/close " ],
[ "/consider", "Reconsider cards", "/consider" ],
[ "/do", "Move cards to doing", "/do" ],
[ "/reconsider", "Move cards to reconsidering", "/reconsider" ],
[ "/add_card", "Add a new card", "/add_card " ],
[ "/assign", "Assign cards to people", "/assign @" ],
[ "/clear", "Clear all filters", "/clear" ],
[ "/close", "Close cards (with optional reason)", "/close " ],
[ "/consider", "Move cards back to Considering", "/consider" ],
[ "/do", "Move cards to Doing", "/do" ],
[ "/reconsider", "Move cards back to Considering", "/reconsider" ],
[ "/search", "Search cards and comments", "/search " ],
[ "/tag", "Tag selected cards", "/tag #" ],
[ "/stage", "Set cards to a workflow stage", "/stage " ]
[ "/stage", "Move cards to a Workflow Stage", "/stage " ]
]
if stale? etag: @commands
+1 -1
View File
@@ -27,7 +27,7 @@
data: {
terminal_target: "input"
},
placeholder: platform.desktop? ? "Press #{ hotkey_label(["ctrl", "K"]) } to search or type commands…" : "Search or type commands…",
placeholder: platform.desktop? ? "Press #{ hotkey_label(["ctrl", "K"]) } to search or type /commands…" : "Search or type /commands…",
spellcheck: "false" do %>
<%= global_mentions_prompt %>
<%= tags_prompt %>