We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9711a75 commit 461a42eCopy full SHA for 461a42e
personalization-webcomponents/src/components/ChecklistList.vue
@@ -154,7 +154,6 @@ function handleArrowKeyDown(event: KeyboardEvent) {
154
const maxIndex = props.checklistItems.length - 1;
155
const move = (direction: number) => {
156
if (draggedIndex.value) {
157
-
158
const newIndex = draggedIndex.value + direction;
159
if (newIndex < 0 || newIndex > maxIndex) return;
160
0 commit comments