소스 검색

[hotfix] uncaught read property split of undefinded (#3640)

version-14
Makarand Bauskar 8 년 전
committed by GitHub
부모
커밋
b89c69ee60
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      frappe/public/js/frappe/ui/filters/filters.js

+ 3
- 1
frappe/public/js/frappe/ui/filters/filters.js 파일 보기

@@ -408,7 +408,9 @@ frappe.ui.Filter = Class.extend({
}
}
} else if(in_list(["in", "not in"], this.get_condition())) {
val = $.map(val.split(","), function(v) { return strip(v); });
if(val) {
val = $.map(val.split(","), function(v) { return strip(v); });
}
} if(val === '%') {
val = "";
}


불러오는 중...
취소
저장