This is an automated email from the ASF dual-hosted git repository. ephraimanierobi pushed a commit to branch v2-5-test in repository https://gitbox.apache.org/repos/asf/airflow.git
commit 3297c943bdc5fffbbdac93ad561bf4e97b0a98a3 Author: Brent Bovenzi <[email protected]> AuthorDate: Wed Feb 22 15:33:35 2023 -0500 Move extra links position in grid view (#29703) (cherry picked from commit 8449180f4818ecaa5c065c65152922335ffe8c5a) --- airflow/www/static/js/dag/details/taskInstance/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airflow/www/static/js/dag/details/taskInstance/index.tsx b/airflow/www/static/js/dag/details/taskInstance/index.tsx index 53e2a4b899..66bd8d74e7 100644 --- a/airflow/www/static/js/dag/details/taskInstance/index.tsx +++ b/airflow/www/static/js/dag/details/taskInstance/index.tsx @@ -185,7 +185,6 @@ const TaskInstance = ({ isGroup={isGroup} /> </Box> - <Details instance={instance} group={group} dagId={dagId} /> {!isMapped && ( <ExtraLinks taskId={taskId} @@ -194,6 +193,7 @@ const TaskInstance = ({ extraLinks={group?.extraLinks || []} /> )} + <Details instance={instance} group={group} dagId={dagId} /> </Box> </TabPanel>
