Skip to content

Commit

Permalink
Cargo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
itome committed Apr 16, 2024
1 parent 3fc5972 commit a45401b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/runners.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ impl Component for RunnersComponent {
.collect::<Vec<_>>();

let mut run_new_app_button = ListItem::new(Text::raw(" ▶ Run new app "));
if state.focus == Focus::Home(Home::Runners) && state.session_id == None {
if state.focus == Focus::Home(Home::Runners) && state.session_id.is_none() {
run_new_app_button = run_new_app_button
.add_modifier(Modifier::REVERSED)
.add_modifier(Modifier::BOLD);
Expand Down

0 comments on commit a45401b

Please sign in to comment.