diff --git a/airflow/www/views.py b/airflow/www/views.py index 0ae53e5a5ff7d..a6030e0ab1e94 100644 --- a/airflow/www/views.py +++ b/airflow/www/views.py @@ -835,7 +835,7 @@ def _iter_parsed_moved_data_table_names(): if segments[0] != settings.AIRFLOW_MOVED_TABLE_PREFIX: continue # Second segment is a version marker that we don't need to show. - yield segments[3], table_name + yield segments[-1], table_name if ( permissions.ACTION_CAN_ACCESS_MENU,