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

@ -34,6 +34,11 @@ export default {
}
},
methods: {
setFocus() {
if (this.$refs.input && this.$refs.input.setFocus) {
this.$refs.input.setFocus()
}
},
blur() {
if (this.$refs.input && this.$refs.input.blur) {
this.$refs.input.blur()