Dotify71 commented on code in PR #69114:
URL: https://github.com/apache/airflow/pull/69114#discussion_r3508996854


##########
airflow-core/src/airflow/ui/src/pages/XCom/XCom.tsx:
##########
@@ -61,6 +61,7 @@ const getColumns = ({
 }: ColumnsProps): Array<ColumnDef<XComResponse>> => [
   {
     accessorKey: "key",
+    cell: ({ row: { original } }) => <TruncatedText text={original.key} />,

Review Comment:
   Agreed. Removed the cell override I had added to the key column now it's 
back to the original default rendering. The TruncatedText import is kept as 
it's still legitimately used for run_id and task_display_name columns.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to