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/03/16 20:23:07 UTC

[airflow] branch mapped-task-drawer updated (9b246fb -> 2566a74)

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

bbovenzi pushed a change to branch mapped-task-drawer
in repository https://gitbox.apache.org/repos/asf/airflow.git.


    from 9b246fb  fix extra links, hide local TZ if UTC,
     add 2566a74  confirm mark task failed/success

No new revisions were added by this update.

Summary of changes:
 airflow/www/static/js/tree/api/index.js            |   2 +
 ...seMarkFailedTask.js => useConfirmTaskChange.js} |  25 +----
 .../details/content/taskInstance/ExtraLinks.jsx}   |  67 ++++++------
 .../js/tree/details/content/taskInstance/Logs.jsx  | 121 +++++++++++++++++++++
 .../{TaskInstance.jsx => taskInstance/index.jsx}   | 119 +++-----------------
 .../taskActions/ActionButton.jsx                   |   0
 .../{ => taskInstance}/taskActions/Clear.jsx       |   2 +-
 .../taskInstance/taskActions/ConfirmDialog.jsx     |  71 ++++++++++++
 .../{ => taskInstance}/taskActions/MarkFailed.jsx  |  39 ++++++-
 .../{ => taskInstance}/taskActions/MarkSuccess.jsx |  40 ++++++-
 .../content/{ => taskInstance}/taskActions/Run.jsx |   2 +-
 airflow/www/static/js/tree/details/index.jsx       |   2 +-
 airflow/www/views.py                               |  64 +++++++++++
 13 files changed, 389 insertions(+), 165 deletions(-)
 copy airflow/www/static/js/tree/api/{useMarkFailedTask.js => useConfirmTaskChange.js} (65%)
 copy airflow/{ui/src/components/SectionNav.tsx => www/static/js/tree/details/content/taskInstance/ExtraLinks.jsx} (53%)
 create mode 100644 airflow/www/static/js/tree/details/content/taskInstance/Logs.jsx
 rename airflow/www/static/js/tree/details/content/{TaskInstance.jsx => taskInstance/index.jsx} (72%)
 rename airflow/www/static/js/tree/details/content/{ => taskInstance}/taskActions/ActionButton.jsx (100%)
 rename airflow/www/static/js/tree/details/content/{ => taskInstance}/taskActions/Clear.jsx (98%)
 create mode 100644 airflow/www/static/js/tree/details/content/taskInstance/taskActions/ConfirmDialog.jsx
 rename airflow/www/static/js/tree/details/content/{ => taskInstance}/taskActions/MarkFailed.jsx (66%)
 rename airflow/www/static/js/tree/details/content/{ => taskInstance}/taskActions/MarkSuccess.jsx (66%)
 rename airflow/www/static/js/tree/details/content/{ => taskInstance}/taskActions/Run.jsx (97%)