This is an automated email from the ASF dual-hosted git repository.
pierrejeambrun 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 a06082660ed fix bulk connection delete banner (#64735)
a06082660ed is described below
commit a06082660ed557f2eef415e8018de36e614c87fe
Author: Shubham Raj <[email protected]>
AuthorDate: Thu Apr 9 18:22:55 2026 +0530
fix bulk connection delete banner (#64735)
---
airflow-core/src/airflow/ui/src/queries/useBulkDeleteConnections.tsx | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git
a/airflow-core/src/airflow/ui/src/queries/useBulkDeleteConnections.tsx
b/airflow-core/src/airflow/ui/src/queries/useBulkDeleteConnections.tsx
index d56f8e0fa0b..bfd4359a087 100644
--- a/airflow-core/src/airflow/ui/src/queries/useBulkDeleteConnections.tsx
+++ b/airflow-core/src/airflow/ui/src/queries/useBulkDeleteConnections.tsx
@@ -54,7 +54,9 @@ export const useBulkDeleteConnections = ({ clearSelections,
onSuccessConfirm }:
keys: success.join(", "),
resourceName: translate("admin:connections.connection_other"),
}),
- title: translate("toaster.bulkDelete.success.title"),
+ title: translate("toaster.bulkDelete.success.title", {
+ resourceName: translate("admin:connections.connection_other"),
+ }),
type: "success",
});
clearSelections();