Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix context menu empty on button click in tiles view #10900

Merged
merged 3 commits into from
May 14, 2024
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
6 changes: 6 additions & 0 deletions changelog/unreleased/bugfix-context-menu-empty-in-tiles-view
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Bugfix: Context menu empty in tiles view

We've fixed a bug where the context menu was empty in the tiles view after clicking the show context menu button

https://github.com/owncloud/web/pull/10900
https://github.com/owncloud/web/issues/10793
Original file line number Diff line number Diff line change
Expand Up @@ -286,6 +286,7 @@ export default defineComponent({
if (dropdown?.tippy === undefined) {
return
}
resourcesStore.setSelection([item.id])
displayPositionedDropdown(dropdown.tippy, event, unref(tileRefs).dropBtns[index])
}

Expand Down