Update:Editing series on book in edit modal sets focus to first available input #889

This commit is contained in:
advplyr 2022-08-03 18:38:08 -05:00
parent 8810f90226
commit 87d1f457ba
4 changed files with 32 additions and 2 deletions

View file

@ -80,6 +80,9 @@ export default {
blur() {
if (this.$refs.input) this.$refs.input.blur()
},
setFocus() {
if (this.$refs.input) this.$refs.input.focus()
},
mouseover() {
this.isHovering = true
},