You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ry...@apache.org on 2021/05/27 20:23:24 UTC

[airflow] branch master updated (65519ab -> 2c6b003)

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

ryanahamilton pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git.


    from 65519ab  Fixes problem where conf variable was used before initialization (#16088)
     add 2c6b003  Updated table component (#15805)

No new revisions were added by this update.

Summary of changes:
 airflow/ui/package.json                           |   2 +
 airflow/ui/src/api/index.ts                       |  23 ++-
 airflow/ui/src/components/Table.tsx               | 187 ++++++++++++++++++++++
 airflow/ui/src/interfaces/react-table-config.d.ts | 145 +++++++++++++++++
 airflow/ui/src/views/Pipelines/PipelinesTable.tsx | 120 +++++++++-----
 airflow/ui/src/views/Pipelines/Row.tsx            | 141 ++++++++--------
 airflow/ui/test/Pipelines.test.tsx                |  26 ++-
 airflow/ui/yarn.lock                              |  12 ++
 8 files changed, 531 insertions(+), 125 deletions(-)
 create mode 100644 airflow/ui/src/components/Table.tsx
 create mode 100644 airflow/ui/src/interfaces/react-table-config.d.ts