Skip to content

Commit

Permalink
wip: extract SearchPrompt out of SearchFilterPrompt
Browse files Browse the repository at this point in the history
  • Loading branch information
joshka committed Feb 10, 2024
1 parent 36e66eb commit deba4e8
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -36,7 +36,7 @@ lazy_static = "1.4.0"
libc = "0.2.148"
num-format = "0.4.4"
pretty_assertions = "1.4.0"
ratatui = { version = "0.26.0", features = ["serde", "macros"] }
ratatui = { version = "0.26.1-alpha.0", features = ["serde", "macros"] }
ratatui-macros = "0.2.3"
serde = { version = "1.0.188", features = ["derive"] }
serde_with = "3.5.0"
Expand Down
3 changes: 3 additions & 0 deletions src/app.rs
Expand Up @@ -36,6 +36,9 @@ use crate::{

mod search_page;
use search_page::SearchPage;
mod search_prompt;
// TODO switch to use search_prompt::SearchPrompt
use search_prompt::*;

use self::search_page::SearchMode;

Expand Down

0 comments on commit deba4e8

Please sign in to comment.