mirror of
https://github.com/frappe/books.git
synced 2025-01-08 17:24:05 +00:00
fix: select field issue
This commit is contained in:
parent
95e5447d79
commit
1dc0911add
@ -73,7 +73,10 @@ export default defineComponent({
|
|||||||
methods: {
|
methods: {
|
||||||
onChange(e: Event) {
|
onChange(e: Event) {
|
||||||
const target = e.target;
|
const target = e.target;
|
||||||
if (!(target instanceof HTMLInputElement)) {
|
if (
|
||||||
|
!(target instanceof HTMLSelectElement) &&
|
||||||
|
!(target instanceof HTMLInputElement)
|
||||||
|
) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user