fix: Sider (missing semicolon)

This commit is contained in:
marination
2021-11-29 13:59:45 +05:30
parent ae27bbe3c0
commit 9ec58dec4d

View File

@@ -3,7 +3,7 @@ erpnext.ProductSearch = class {
/* Options: search_box_class (for custom search box) */
$.extend(this, opts);
this.MAX_RECENT_SEARCHES = 4;
this.search_box_class = this.search_box_class || "#search-box"
this.search_box_class = this.search_box_class || "#search-box";
this.searchBox = $(this.search_box_class);
this.setupSearchDropDown();