Merge pull request #19878 from frappe/mergify/bp/develop/pr-19869

This commit is contained in:
Shariq Ansari 2023-02-01 15:45:10 +05:30 committed by GitHub
commit dbefead489
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,8 +75,8 @@ frappe.ui.form.MultiSelectDialog = class MultiSelectDialog {
}
make() {
let doctype_plural = this.doctype.plural();
let title = __("Select {0}", [this.for_select ? __("value") : __(doctype_plural)]);
let doctype_plural = __(this.doctype).plural();
let title = __("Select {0}", [this.for_select ? __("value") : doctype_plural]);
this.dialog = new frappe.ui.Dialog({
title: title,