fix: Make docname translatable in share dialog

This commit is contained in:
devdiogenes 2026-04-22 13:43:33 +00:00
parent 1b8f6cddbb
commit 3c95598c1d

View file

@ -53,7 +53,7 @@ frappe.ui.form.Share = class Share {
show() {
var me = this;
var d = new frappe.ui.Dialog({
title: __("Share {0} with", [this.frm.doc.name]),
title: __("Share {0} with", [__(this.frm.doc.name)]),
});
this.dialog = d;