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 3363004450 Support for sorting DAGs by Last Run Date in the web UI
(#31234)
add 4beb89965c Render DAGCode in the Grid View as a tab (#31113)
No new revisions were added by this update.
Summary of changes:
airflow/www/package.json | 2 +
airflow/www/static/js/api/index.ts | 4 +
.../www/static/js/api/{useDataset.ts => useDag.ts} | 17 +---
.../static/js/api/{useDataset.ts => useDagCode.ts} | 31 ++++---
.../static/js/dag/details/dagCode/CodeBlock.tsx | 72 +++++++++++++++
.../www/static/js/dag/details/dagCode/index.tsx | 63 +++++++++++++
airflow/www/static/js/dag/details/index.tsx | 25 ++++-
airflow/www/templates/airflow/dag.html | 2 +
airflow/www/yarn.lock | 102 +++++++++++++++++++++
9 files changed, 291 insertions(+), 27 deletions(-)
copy airflow/www/static/js/api/{useDataset.ts => useDag.ts} (75%)
copy airflow/www/static/js/api/{useDataset.ts => useDagCode.ts} (64%)
create mode 100644 airflow/www/static/js/dag/details/dagCode/CodeBlock.tsx
create mode 100644 airflow/www/static/js/dag/details/dagCode/index.tsx