Merge branch 'develop' into fix_possible_none_value

This commit is contained in:
Shariq Ansari 2023-02-01 15:50:03 +05:30 committed by GitHub
commit 1dab286bd8
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,