Skip to content

Commit

Permalink
fix: cvComboBox arrows navigation failing due to missing value access…
Browse files Browse the repository at this point in the history
… to Proxy (#1605)
  • Loading branch information
OlkaB committed Jun 18, 2024
1 parent e18da5a commit 6815a25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/CvComboBox/CvComboBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ function doMove(up) {
newHighlight = currentHighlight + 1;
}
}
highlighted.value = dataOptions[newHighlight].value;
highlighted.value = dataOptions.value[newHighlight].value;
}
}
function updateOptions() {
Expand Down

0 comments on commit 6815a25

Please sign in to comment.