Skip to content

Commit c8ab91b

Browse files
authored
Merge pull request #2060 from nextcloud-libraries/artonge/chore/v6.4.1
chore: prepare v6.4.1
2 parents a761dbf + e8e0f80 commit c8ab91b

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
All notable changes to this project will be documented in this file.
88

9+
## [v6.4.1](https://github.com/nextcloud-libraries/nextcloud-dialogs/compare/v6.3.2...v6.4.0)
10+
### 🐛 Fixed bugs
11+
* fix(FileListRow): enter-directory event name [\#2059](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/2059) \([artonge](https://github.com/artonge)\)
12+
913
## [v6.4.0](https://github.com/nextcloud-libraries/nextcloud-dialogs/compare/v6.3.2...v6.4.0)
1014
### 🚀 Enhancements
1115
* feat(FilePicker): Improve pick and navigation logic to match user expectation [\#2051](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/2051)

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"

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nextcloud/dialogs",
3-
"version": "6.4.0",
3+
"version": "6.4.1",
44
"description": "Nextcloud dialog helpers",
55
"types": "dist/index.d.ts",
66
"main": "dist/index.cjs",

0 commit comments

Comments
 (0)