diff options
| author | Eugen Wissner <belka@caraus.de> | 2025-04-11 21:45:05 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2025-04-11 21:45:05 +0200 |
| commit | 5a4c882d409e4051001cdd64cbcef9a98fc2c6cf (patch) | |
| tree | 426ff146466b72573dafe35850c114498cfbd4ee /cli/main.cpp | |
| parent | 68f64f20dd2f827f6076ec02d3eaa8961fd12022 (diff) | |
| download | kazbek-5a4c882d409e4051001cdd64cbcef9a98fc2c6cf.tar.gz | |
Katja: Allow the search by name in the TUI
Diffstat (limited to 'cli/main.cpp')
| -rw-r--r-- | cli/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/main.cpp b/cli/main.cpp index f145905..aa0394b 100644 --- a/cli/main.cpp +++ b/cli/main.cpp @@ -23,7 +23,7 @@ int main(int argc, const char **argv) auto container = Screen(std::vector<std::pair<std::string, katja::Page>>{ { "Home", ftxui::Make<katja::WelcomePage>() }, { "Updates", ftxui::Make<katja::UpdatesPage>(repository, std::move(installed_database)) }, - { "Search", ftxui::Make<katja::SearchPage>() } + { "Search", ftxui::Make<katja::SearchPage>(repository, "x86-64") } }, screen.ExitLoopClosure()); screen.Loop(container); |
