This is an automated email from the ASF dual-hosted git repository.
pierrejeambrun pushed a commit to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/v3-1-test by this push:
new 89cd5dae975 [v3-1-test] fix toaster (#64142) (#64176)
89cd5dae975 is described below
commit 89cd5dae975743f6c8c4f7dad06b8ca916390611
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Mar 25 17:40:01 2026 +0100
[v3-1-test] fix toaster (#64142) (#64176)
(cherry picked from commit 45bdd0d3efcca84566e5739a1b361dcbf8dd7b25)
Co-authored-by: Shubham Raj
<[email protected]>
---
airflow-core/src/airflow/ui/src/queries/useBulkDeleteVariables.ts | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/airflow-core/src/airflow/ui/src/queries/useBulkDeleteVariables.ts
b/airflow-core/src/airflow/ui/src/queries/useBulkDeleteVariables.ts
index dd197a237bc..4a0d64d2cdc 100644
--- a/airflow-core/src/airflow/ui/src/queries/useBulkDeleteVariables.ts
+++ b/airflow-core/src/airflow/ui/src/queries/useBulkDeleteVariables.ts
@@ -54,7 +54,9 @@ export const useBulkDeleteVariables = ({ clearSelections,
onSuccessConfirm }: Pr
keys: success.join(", "),
resourceName: translate("admin:variables.variable_other"),
}),
- title: translate("toaster.bulkDelete.success.title"),
+ title: translate("toaster.bulkDelete.success.title", {
+ resourceName: translate("admin:variables.variable_other"),
+ }),
type: "success",
});
clearSelections();