fix: possible typerror in utils.js

and remove unwanted debugging statements

(cherry picked from commit 60b26ad8b2)
This commit is contained in:
ruthra kumar
2024-01-15 20:22:30 +05:30
committed by Mergify
parent 46d846bf1a
commit 4ea72f4b69
2 changed files with 1 additions and 5 deletions

View File

@@ -21,7 +21,7 @@ $.extend(erpnext, {
},
toggle_naming_series: function() {
if(cur_frm.fields_dict.naming_series) {
if(cur_frm && cur_frm.fields_dict.naming_series) {
cur_frm.toggle_display("naming_series", cur_frm.doc.__islocal?true:false);
}
},