This is an automated email from the ASF dual-hosted git repository.
potiuk 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 ac6e893af73 Add common: namespace to translation keys in AssetsList
component for consistency. (#59227)
ac6e893af73 is described below
commit ac6e893af7342f4d089f554cb4061a32ffdc19a1
Author: Yeonguk Choo <[email protected]>
AuthorDate: Tue Dec 9 22:45:49 2025 +0900
Add common: namespace to translation keys in AssetsList component for
consistency. (#59227)
---
airflow-core/src/airflow/ui/src/pages/AssetsList/AssetsList.tsx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/airflow-core/src/airflow/ui/src/pages/AssetsList/AssetsList.tsx
b/airflow-core/src/airflow/ui/src/pages/AssetsList/AssetsList.tsx
index ee0e8cc2a3a..0d041b23a0d 100644
--- a/airflow-core/src/airflow/ui/src/pages/AssetsList/AssetsList.tsx
+++ b/airflow-core/src/airflow/ui/src/pages/AssetsList/AssetsList.tsx
@@ -165,8 +165,8 @@ export const AssetsList = () => {
</Heading>
<ExpandCollapseButtons
- collapseLabel={translate("collapseAllExtra")}
- expandLabel={translate("expandAllExtra")}
+ collapseLabel={translate("common:collapseAllExtra")}
+ expandLabel={translate("common:expandAllExtra")}
onCollapse={onClose}
onExpand={onOpen}
/>