2
0
mirror of https://github.com/frappe/books.git synced 2025-01-22 14:48:25 +00:00

tabs to spaces

This commit is contained in:
Rushabh Mehta 2018-01-23 18:01:09 +05:30
parent 8df658112f
commit c77f319d81

View File

@ -16,7 +16,7 @@ class LinkControl extends BaseControl {
this.input.addEventListener('input', async (event) => { this.input.addEventListener('input', async (event) => {
this.awesomplete.list = (await frappe.db.get_all({ this.awesomplete.list = (await frappe.db.get_all({
doctype: this.options, doctype: this.options,
filters: {keywords: ["like", this.input.value]}, filters: { keywords: ["like", this.input.value] },
limit: 50 limit: 50
})).map(d => d.name); })).map(d => d.name);
}); });