This is an automated email from the ASF dual-hosted git repository.
pierrejeambrun pushed a commit to branch v3-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-2-test by this push:
new 4b1f9eeba8a [v3-2-test] fix bulk connection delete banner (#64735)
(#64961)
4b1f9eeba8a is described below
commit 4b1f9eeba8a533be77832c96165bc717626a89d2
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Apr 9 17:00:31 2026 +0200
[v3-2-test] fix bulk connection delete banner (#64735) (#64961)
(cherry picked from commit a06082660ed557f2eef415e8018de36e614c87fe)
Co-authored-by: Shubham Raj
<[email protected]>
---
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();