You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by bb...@apache.org on 2022/07/28 12:06:53 UTC

[airflow] branch main updated (d2df9fe786 -> a31b04cc1d)

This is an automated email from the ASF dual-hosted git repository.

bbovenzi pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


    from d2df9fe786 Add `operator` and `has_outlet_datasets` to `/grid_data` (#25323)
     add a31b04cc1d Remove getTasks from Grid view (#25359)

No new revisions were added by this update.

Summary of changes:
 airflow/www/static/js/api/index.ts                 |   2 -
 airflow/www/static/js/api/useTasks.test.jsx        |  86 ----------------
 airflow/www/static/js/api/useTasks.ts              |  43 --------
 airflow/www/static/js/dag/details/Dag.tsx          |  30 +++---
 airflow/www/static/js/dag/details/Header.tsx       |  13 ++-
 .../static/js/dag/details/taskInstance/Details.tsx |   4 +-
 .../www/static/js/dag/details/taskInstance/Nav.tsx |   2 +-
 .../static/js/dag/details/taskInstance/index.tsx   |  38 ++-----
 airflow/www/static/js/types/index.ts               |   2 +
 airflow/www/static/js/utils/index.test.ts          | 114 +++++++++++++++++++++
 airflow/www/static/js/utils/index.ts               |  68 ++++++++++++
 airflow/www/templates/airflow/dag.html             |   1 -
 12 files changed, 214 insertions(+), 189 deletions(-)
 delete mode 100644 airflow/www/static/js/api/useTasks.test.jsx
 delete mode 100644 airflow/www/static/js/api/useTasks.ts
 create mode 100644 airflow/www/static/js/utils/index.test.ts