Skip to content

Commit

Permalink
Fix incorrect button handler
Browse files Browse the repository at this point in the history
  • Loading branch information
gizmo385 committed Dec 12, 2024
1 parent 6563211 commit dc3fb34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lazy_github/ui/screens/trigger_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def compose(self) -> ComposeResult:
yield TriggerWorkflowContainer(self.workflow)
yield LazyGithubFooter()

@on(Button.Pressed, "#submit")
@on(Button.Pressed, "#trigger")
async def action_submit(self) -> None:
assert LazyGithubContext.current_repo is not None, "Unexpectedly missing current repo!"
branch_input = self.query_one("#branch_to_build", Input)
Expand Down

0 comments on commit dc3fb34

Please sign in to comment.