diff --git a/crates/git_ui/src/git_panel.rs b/crates/git_ui/src/git_panel.rs index cea1d9b4631bf83fbe2d8eb5c2a208ffcbfc5e4e..b52bd3441965294c59ebfb8349a0cd7e24939ff9 100644 --- a/crates/git_ui/src/git_panel.rs +++ b/crates/git_ui/src/git_panel.rs @@ -2944,6 +2944,10 @@ impl GitPanel { .disabled(!can_commit || self.modal_open) .on_click({ cx.listener(move |this, _: &ClickEvent, window, cx| { + telemetry::event!( + "Git Committed", + source = "Git Panel" + ); this.commit_changes(window, cx) }) }),