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/14 16:34:37 UTC

[airflow] branch main updated (292440d54f -> 7af840f658)

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 292440d54f Implement Azure Service Bus (Update and Receive) Subscription Operator (#25029)
     add 7af840f658 Add Datasets view (#25038)

No new revisions were added by this update.

Summary of changes:
 airflow/www/package.json                           |  1 +
 airflow/www/static/js/api/index.ts                 |  2 +
 .../static/js/api/{useTasks.ts => useDatasets.ts}  | 29 +++++--
 airflow/www/static/js/components/Table.jsx         |  8 +-
 airflow/www/static/js/datasets/List.tsx            | 95 ++++++++++++++++++++++
 airflow/www/static/js/{dag => datasets}/index.tsx  |  4 +-
 airflow/www/static/js/types/index.ts               |  9 ++
 .../www/templates/airflow/datasets.html            | 25 ++++--
 airflow/www/templates/appbuilder/navbar_menu.html  |  1 +
 airflow/www/views.py                               | 12 +++
 airflow/www/webpack.config.js                      |  1 +
 airflow/www/yarn.lock                              |  7 ++
 12 files changed, 178 insertions(+), 16 deletions(-)
 copy airflow/www/static/js/api/{useTasks.ts => useDatasets.ts} (60%)
 create mode 100644 airflow/www/static/js/datasets/List.tsx
 copy airflow/www/static/js/{dag => datasets}/index.tsx (96%)
 copy dev/templates/twitter.j2 => airflow/www/templates/airflow/datasets.html (60%)