Skip to content

Commit f457cf3

Browse files
committed
fix(FileListRow): enter-directory event name
Was wrongly changed by #2051 Signed-off-by: Louis Chmn <[email protected]>
1 parent a761dbf commit f457cf3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/components/FilePicker/FileListRow.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/* same as tabindex -> if we hide the checkbox or this is a directory we need keyboard access to enter the directory or select the node */
1818
...(!showCheckbox || isDirectory ? { keydown: handleKeyDown } : {}),
1919
}">
20-
<td v-if="showCheckbox" class="row-checkbox" @click.stop="() => {/* Stop the click event */}">
20+
<td v-if="showCheckbox" class="row-checkbox" @click.stop="() => {/* Stop the click event */ }">
2121
<NcCheckboxRadioSwitch :aria-label="t('Select the row for {nodename}', { nodename: displayName })"
2222
:disabled="!isPickable"
2323
data-testid="row-checkbox"

0 commit comments

Comments
 (0)