Skip to content
Merged
Changes from 1 commit
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
Next Next commit
fix(files): provide boundaries for FileListTableHeaderActions element
- default boundaries element is 'content-vue', which includes sidebar

Signed-off-by: Maksim Sukharev <[email protected]>
  • Loading branch information
Antreesy authored and backportbot[bot] committed Jul 3, 2025
commit 725eda1a53ff1fa8a6eba583798bd63fcdb31100
5 changes: 5 additions & 0 deletions apps/files/src/components/FilesListTableHeaderActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<div class="files-list__column files-list__row-actions-batch" data-cy-files-list-selection-actions>
<NcActions ref="actionsMenu"
container="#app-content-vue"
:boundaries-element="boundariesElement"
:disabled="!!loading || areSomeNodesLoading"
:force-name="true"
:inline="enabledInlineActions.length"
Expand Down Expand Up @@ -123,13 +124,17 @@ export default defineComponent({
const fileListWidth = useFileListWidth()
const { directory } = useRouteParameters()

const boundariesElement = document.getElementById('app-content-vue')

return {
directory,
fileListWidth,

actionsMenuStore,
filesStore,
selectionStore,

boundariesElement,
}
},

Expand Down