Skip to content

Commit

Permalink
Merge pull request #9570 from owncloud/fix-function-arg
Browse files Browse the repository at this point in the history
fix(type-check): remove unnecessary passing of arg in useKeyboardActions
  • Loading branch information
JammingBen authored Aug 11, 2023
2 parents 65831b6 + b03950a commit ab1d801
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ export default defineComponent({
total: totalPages
} = usePagination({ items, perPageDefault, perPageStoragePrefix })
const keyActions = useKeyboardActions('group-list')
const keyActions = useKeyboardActions()
useKeyboardTableNavigation(
keyActions,
paginatedItems,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ export default defineComponent({
eventBus.publish(SideBarEventTopics.open)
}
const keyActions = useKeyboardActions('space-list')
const keyActions = useKeyboardActions()
useKeyboardTableNavigation(
keyActions,
paginatedItems,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ export default defineComponent({
emit('unSelectAllUsers')
})
const keyActions = useKeyboardActions('user-list')
const keyActions = useKeyboardActions()
useKeyboardTableNavigation(
keyActions,
paginatedItems,
Expand Down

0 comments on commit ab1d801

Please sign in to comment.