fix: missing bracket in get_inner_group_button

(cherry picked from commit 882ea6e3d1)
This commit is contained in:
prssanna 2021-03-10 18:23:59 +05:30 committed by mergify-bot
parent 982522aa3f
commit fe65c99c3b

View file

@ -537,7 +537,7 @@ frappe.ui.Page = Class.extend({
},
get_inner_group_button: function(label) {
return this.inner_toolbar.find(`.inner-group-button[data-label="${encodeURIComponent(label)}"`);
return this.inner_toolbar.find(`.inner-group-button[data-label="${encodeURIComponent(label)}"]`);
},
set_inner_btn_group_as_primary: function(label) {