Fix the left arrow key not working on the first button in prompts (#4816)

This commit is contained in:
absidue 2024-03-27 01:32:21 +01:00 committed by GitHub
parent 77df063c71
commit d8a3ab337d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ export default defineComponent({
focusItem: function (value) {
let index = value
if (index < 0) {
index = this.promptButtons.length
index = this.promptButtons.length - 1
} else if (index >= this.promptButtons.length) {
index = 0
}