Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix file picker initialization
Signed-off-by: John Molakvoæ <[email protected]>
Signed-off-by: nextcloud-command <[email protected]>
  • Loading branch information
skjnldsv authored and backportbot-nextcloud[bot] committed Sep 27, 2022
commit cfabd7474aa2845391f9f323a3e2f502b90ce481
4 changes: 2 additions & 2 deletions js/photos-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/photos-main.js.map

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions src/components/Settings/PhotosLocationSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@
type="text"
@input="debounceUpdatePhotosFolder(photosLocation)"
@change="debounceUpdatePhotosFolder(photosLocation)"
@focus="selectPhotosFolder"
@click="selectPhotosFolder">
@click="selectPhotosFolder"
@focus.once="selectPhotosFolder"
@keyboard.enter="selectPhotosFolder">
</div>
</template>

Expand Down