Skip to content

Commit

Permalink
fix: Missing traduction in the query popup
Browse files Browse the repository at this point in the history
(cherry picked from commit 20d3ea6)
  • Loading branch information
Noé authored and mergify[bot] committed Jan 24, 2024
1 parent 2aeb9a6 commit 051d622
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frappe/public/js/frappe/form/controls/link.js
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ frappe.ui.form.ControlLink = class ControlLink extends frappe.ui.form.ControlDat
filter[3].push("...");
}

let value = filter[3] == null || filter[3] === "" ? __("empty") : String(filter[3]);
let value = filter[3] == null || filter[3] === "" ? __("empty") : String(__(filter[3]));

return [__(label).bold(), __(filter[2]), value.bold()].join(" ");
}
Expand Down

0 comments on commit 051d622

Please sign in to comment.