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


##########
airflow-core/src/airflow/ui/src/layouts/Details/DetailsLayout.tsx:
##########
@@ -378,6 +378,7 @@ export const DetailsLayout = ({ children, error, isLoading, 
outletContext, tabs
                         right={direction === "rtl" ? "0" : undefined}
                         size="2xs"
                         top="50%"
+                        transform={direction === "ltr" ? "translateX(-100%)" : 
"translateX(100%)"}

Review Comment:
   Just remove the icon, that's implicitely hidding it.



##########
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:
   unrelated to the issue you are trying to fix, please remove.



##########
airflow-core/src/airflow/ui/src/pages/TaskStateStore/TaskStateStore.tsx:
##########


Review Comment:
   unrelated to the issue you are trying to fix, please remove.



-- 
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