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

bbovenzi pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new c970317e18e Remove sort indicators on XCom table (#49547)
c970317e18e is described below

commit c970317e18e4870f0b47b16f08293373e1e3a21e
Author: Pierre Jeambrun <[email protected]>
AuthorDate: Tue Apr 22 16:31:18 2025 +0200

    Remove sort indicators on XCom table (#49547)
---
 airflow-core/src/airflow/ui/src/pages/XCom/XCom.tsx | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/airflow-core/src/airflow/ui/src/pages/XCom/XCom.tsx 
b/airflow-core/src/airflow/ui/src/pages/XCom/XCom.tsx
index 39445c375ec..9614bf3d8d5 100644
--- a/airflow-core/src/airflow/ui/src/pages/XCom/XCom.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/XCom/XCom.tsx
@@ -43,6 +43,7 @@ const columns: Array<ColumnDef<XComResponse>> = [
         <RouterLink 
to={`/dags/${original.dag_id}`}>{original.dag_id}</RouterLink>
       </Link>
     ),
+    enableSorting: false,
     header: "Dag",
   },
   {
@@ -54,6 +55,7 @@ const columns: Array<ColumnDef<XComResponse>> = [
         </RouterLink>
       </Link>
     ),
+    enableSorting: false,
     header: "Run Id",
   },
   {
@@ -77,6 +79,7 @@ const columns: Array<ColumnDef<XComResponse>> = [
   },
   {
     accessorKey: "map_index",
+    enableSorting: false,
     header: "Map Index",
   },
   {

Reply via email to