Skip to content

Commit

Permalink
Remove S-inactive label when using shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
Urgau committed Feb 9, 2025
1 parent a9ed2b9 commit 92546b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/handlers/shortcut.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ pub(super) async fn handle_command(
let waiting_on_review = "S-waiting-on-review";
let waiting_on_author = "S-waiting-on-author";
let blocked = "S-blocked";
let status_labels = [waiting_on_review, waiting_on_author, blocked];
let status_labels = [waiting_on_review, waiting_on_author, blocked, "S-inactive"];

let add = match input {
ShortcutCommand::Ready => waiting_on_review,
Expand Down

0 comments on commit 92546b4

Please sign in to comment.