Skip to content

Commit d9a9d0f

Browse files
authored
Fix bad merge :)))))
Tried to make the merge commit from web editor on mobile :))
1 parent f287771 commit d9a9d0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tui/src/state.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -650,8 +650,8 @@ impl AppState {
650650

651651
fn enable_preview(&mut self) {
652652
if let Some(list_node) = self.get_selected_node() {
653-
let mut preview_title = "Command Preview - ".to_string(
654-
preview_title.push_str(list_node.name.as_str());
653+
let mut preview_title = "Command Preview - ".to_string();
654+
preview_title.push_str(list_node.name.as_str());
655655
if let Some(preview) = FloatingText::from_command(&list_node.command, preview_title) {
656656
self.spawn_float(preview, 80, 80);
657657
}

0 commit comments

Comments
 (0)