BrianLii commented on code in PR #54640:
URL: https://github.com/apache/airflow/pull/54640#discussion_r2298898712


##########
airflow-core/src/airflow/ui/src/components/Assets/AssetEvents.tsx:
##########
@@ -64,6 +69,64 @@ export const AssetEvents = ({
       { label: translate("sortBy.oldestFirst"), value: "timestamp" },
     ],
   });
+  const runTypes = ["", "asset_triggered", "backfill", "manual", "scheduled"];
+  const runTypeOptions = createListCollection({
+    items: runTypes.map((type) => ({
+      label: type === "" ? "\u00A0" : translate(`common:runTypes.${type}`),

Review Comment:
   I do this because if the label of an option is an empty string, the height 
of that option would be different from the others. This can be removed if using 
a non-empty label.



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