feat: advanced filtering
Allow filtering by name, image name, status, or a combination of all of the three
This commit is contained in:
@@ -401,6 +401,12 @@ impl InputHandler {
|
||||
KeyCode::Char(x) => {
|
||||
self.app_data.lock().filter_term_push(x);
|
||||
}
|
||||
KeyCode::Right => {
|
||||
self.app_data.lock().filter_by_next();
|
||||
}
|
||||
KeyCode::Left => {
|
||||
self.app_data.lock().filter_by_prev();
|
||||
}
|
||||
_ => (),
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user