Full popup description functionality

This commit is contained in:
2023-08-08 10:50:04 -06:00
parent b24e0cdccd
commit ec980ea32c
11 changed files with 146 additions and 58 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ use crate::handlers::radarr_handler::handle_radarr_key_events;
mod radarr_handler;
pub async fn handle_key_events(key: Key, app: &mut App) {
match *app.get_current_route() {
match app.get_current_route().clone() {
Route::Radarr(active_radarr_block) => {
handle_radarr_key_events(key, app, active_radarr_block).await
}