This is an automated email from the ASF dual-hosted git repository.
bbovenzi 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 45bdd0d3efc fix toaster (#64142)
45bdd0d3efc is described below
commit 45bdd0d3efcca84566e5739a1b361dcbf8dd7b25
Author: Shubham Raj <[email protected]>
AuthorDate: Tue Mar 24 23:08:58 2026 +0530
fix toaster (#64142)
---
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();