Skip to content

Commit

Permalink
Fix UI redirect (#26409)
Browse files Browse the repository at this point in the history
Co-authored-by: Konstantin Weddige <konstantin.weddige@lutrasecurity.com>
  • Loading branch information
jedcunningham and weddige committed Sep 15, 2022
1 parent e458eb6 commit 56e7555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion airflow/www/views.py
Expand Up @@ -2329,7 +2329,7 @@ def confirm(self):
task_id = args.get('task_id')
dag_run_id = args.get('dag_run_id')
state = args.get('state')
origin = args.get('origin')
origin = get_safe_url(args.get('origin'))

if 'map_index' not in args:
map_indexes: list[int] | None = None
Expand Down

0 comments on commit 56e7555

Please sign in to comment.