style: add missing semicolon

This commit is contained in:
Shivam Mishra 2020-06-22 13:39:39 +05:30
parent 19f42d1877
commit 16a2ef78ff

View file

@ -439,8 +439,8 @@ frappe.setup_search = function (target, search_scope) {
return `<a class="dropdown-item" href="/${r.path}">
<h6>${r.title_highlights || r.title}</h6>
<div style="white-space: normal;">${r.content_highlights}</div>
</a>`
}).join('')
</a>`;
}).join('');
}
$dropdown_menu.html(dropdown_html);
$dropdown_menu.addClass('show');
@ -463,7 +463,7 @@ frappe.setup_search = function (target, search_scope) {
$dropdown_menu.html('');
$dropdown_menu.removeClass('show');
}
}
};
// Utility functions