Skip to content

Commit

Permalink
refactor(general): open website instead of repository
Browse files Browse the repository at this point in the history
  • Loading branch information
orhun committed Aug 16, 2024
1 parent ed9a890 commit 069a3d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tui/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ impl<'a> State<'a> {
}
Command::OpenRepo => {
if self.tab == Tab::General {
webbrowser::open(env!("CARGO_PKG_REPOSITORY"))?;
webbrowser::open(env!("CARGO_PKG_HOMEPAGE"))?;
}
}
Command::TraceCalls => {
Expand Down Expand Up @@ -329,7 +329,7 @@ impl<'a> State<'a> {
Tab::General => {
vec![
("Enter", "Analyze library"),
("o", "Visit Repository"),
("o", "Open Documentation"),
("Tab", "Next"),
("Bksp", "Back"),
("q", "Quit"),
Expand Down

0 comments on commit 069a3d1

Please sign in to comment.