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/04/29 13:51:39 UTC

[airflow] branch main updated (f197030cea -> 4c1fcee6ba)

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 f197030cea Fix connection test button (#23345)
     add 4c1fcee6ba Store grid view selection in url params (#23290)

No new revisions were added by this update.

Summary of changes:
 airflow/www/package.json                           |  1 +
 airflow/www/static/js/tree/Tree.jsx                |  2 +-
 airflow/www/static/js/tree/api/useClearRun.js      |  2 +-
 airflow/www/static/js/tree/api/useClearTask.js     |  2 +-
 .../www/static/js/tree/api/useConfirmMarkTask.js   |  2 +-
 airflow/www/static/js/tree/api/useMarkFailedRun.js |  2 +-
 .../www/static/js/tree/api/useMarkFailedTask.js    |  2 +-
 .../www/static/js/tree/api/useMarkSuccessRun.js    |  2 +-
 .../www/static/js/tree/api/useMarkSuccessTask.js   |  2 +-
 airflow/www/static/js/tree/api/useQueueRun.js      |  2 +-
 airflow/www/static/js/tree/api/useRunTask.js       |  2 +-
 airflow/www/static/js/tree/api/useTasks.js         |  3 ++
 airflow/www/static/js/tree/api/useTreeData.js      |  4 +-
 airflow/www/static/js/tree/context/autorefresh.jsx |  2 +-
 airflow/www/static/js/tree/context/selection.jsx   | 56 ----------------------
 airflow/www/static/js/tree/dagRuns/index.jsx       |  2 +-
 airflow/www/static/js/tree/dagRuns/index.test.jsx  |  6 +--
 airflow/www/static/js/tree/details/Header.jsx      |  8 ++--
 airflow/www/static/js/tree/details/index.jsx       |  2 +-
 airflow/www/static/js/tree/index.jsx               |  6 +--
 airflow/www/static/js/tree/renderTaskRows.jsx      |  2 +-
 airflow/www/static/js/tree/renderTaskRows.test.jsx |  6 +--
 .../tree/{treeDataUtils.js => utils/treeData.js}   |  0
 .../static/js/tree/{ => utils}/useErrorToast.js    |  0
 airflow/www/static/js/tree/utils/useSelection.jsx  | 54 +++++++++++++++++++++
 airflow/www/yarn.lock                              | 29 +++++++++++
 26 files changed, 117 insertions(+), 84 deletions(-)
 delete mode 100644 airflow/www/static/js/tree/context/selection.jsx
 rename airflow/www/static/js/tree/{treeDataUtils.js => utils/treeData.js} (100%)
 rename airflow/www/static/js/tree/{ => utils}/useErrorToast.js (100%)
 create mode 100644 airflow/www/static/js/tree/utils/useSelection.jsx