File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
airflow/ui/src/pages/AssetsList Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ import { useTableURLState } from "src/components/DataTable/useTableUrlState";
2828import { ErrorAlert } from "src/components/ErrorAlert" ;
2929import { SearchBar } from "src/components/SearchBar" ;
3030import { SearchParamsKeys } from "src/constants/searchParams" ;
31+ import { CreateAssetEvent } from "src/pages/Asset/CreateAssetEvent" ;
3132import { pluralize } from "src/utils" ;
3233
3334import { DependencyPopover } from "./DependencyPopover" ;
@@ -67,6 +68,12 @@ const columns: Array<ColumnDef<AssetResponse>> = [
6768 enableSorting : false ,
6869 header : ( ) => "Producing Tasks" ,
6970 } ,
71+ {
72+ accessorKey : "trigger" ,
73+ cell : ( { row } ) => < CreateAssetEvent asset = { row . original } withText = { false } /> ,
74+ enableSorting : false ,
75+ header : "" ,
76+ } ,
7077] ;
7178
7279const NAME_PATTERN_PARAM = SearchParamsKeys . NAME_PATTERN ;
You can’t perform that action at this time.
0 commit comments