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/21 20:34:11 UTC

[airflow] branch main updated (93b7a57cbc -> 210ad6408f)

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 93b7a57cbc Include missing mention of `external_executor_id` in `sql_engine_collation_for_ids` docs (#25197)
     add 210ad6408f Dataset details view (#25208)

No new revisions were added by this update.

Summary of changes:
 airflow/www/static/js/api/index.ts                 |   4 +
 .../static/js/api/{useTasks.ts => useDataset.ts}   |  19 +--
 .../js/api/{useDatasets.ts => useDatasetEvents.ts} |  38 +++--
 airflow/www/static/js/api/useDatasets.ts           |   2 +-
 airflow/www/static/js/components/Table.test.tsx    |  59 +++++++-
 airflow/www/static/js/components/Table.tsx         |  26 +++-
 .../dag/details/taskInstance/MappedInstances.tsx   |   5 +-
 airflow/www/static/js/datasets/Details.tsx         | 163 +++++++++++++++++++++
 airflow/www/static/js/datasets/List.tsx            |  42 ++++--
 airflow/www/static/js/datasets/index.tsx           |  30 +++-
 airflow/www/templates/airflow/datasets.html        |   1 +
 11 files changed, 337 insertions(+), 52 deletions(-)
 copy airflow/www/static/js/api/{useTasks.ts => useDataset.ts} (74%)
 copy airflow/www/static/js/api/{useDatasets.ts => useDatasetEvents.ts} (50%)
 create mode 100644 airflow/www/static/js/datasets/Details.tsx