mirror of
https://github.com/frappe/books.git
synced 2025-01-24 07:38:25 +00:00
fix Autocomplete in table
This commit is contained in:
parent
110300005e
commit
66ee79db22
@ -10,6 +10,9 @@ export default {
|
||||
highlightedItem: -1
|
||||
}
|
||||
},
|
||||
render(h) {
|
||||
return this.getWrapperElement(h);
|
||||
},
|
||||
methods: {
|
||||
getInputListeners() {
|
||||
return {
|
||||
@ -44,7 +47,7 @@ export default {
|
||||
},
|
||||
getChildrenElement(h) {
|
||||
return [
|
||||
this.getLabelElement(h),
|
||||
this.onlyInput ? null : this.getLabelElement(h),
|
||||
this.getInputElement(h),
|
||||
this.getDropdownElement(h)
|
||||
];
|
||||
|
@ -44,7 +44,7 @@ export default {
|
||||
},
|
||||
getChildrenElement(h) {
|
||||
return [
|
||||
this.getLabelElement(h),
|
||||
this.onlyInput ? null : this.getLabelElement(h),
|
||||
this.getInputGroupElement(h),
|
||||
this.getDropdownElement(h)
|
||||
];
|
||||
|
Loading…
x
Reference in New Issue
Block a user